我得到这个错误:
Uncaught Error: Invariant Violation: Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: object.
这是我的代码:
var React = require('react')
var ReactDOM = require('react-dom')
var Router = require('react-router')
var Route = Router.Route
var Link = Router.Link
var App = React.createClass({
render() {
return (
<div>
<h1>App</h1>
<ul>
<li><Link to="/about">About</Link></li>
</ul>
</div>
)
}
})
var About = require('./components/Home')
ReactDOM.render((
<Router>
<Route path="/" component={App}>
<Route path="about" component={About} />
</Route>
</Router>
), document.body)
我的家。jsx文件:
var React = require('react');
var RaisedButton = require('material-ui/lib/raised-button');
var Home = React.createClass({
render:function() {
return (
<RaisedButton label="Default" />
);
},
});
module.exports = Home;
https://github.com/rackt/react-router/blob/e7c6f3d848e55dda11595447928e843d39bed0eb/examples/query-params/app.js#L4
路由器也是react-router的属性之一。
所以改变你的模块需要这样的代码:
var reactRouter = require('react-router')
var Router = reactRouter.Router
var Route = reactRouter.Route
var Link = reactRouter.Link
如果你想使用ES6语法的链接使用(导入),使用babel作为助手。
顺便说一句,为了让你的代码正常工作,我们可以添加{this.props。children}在App中,
就像
render() {
return (
<div>
<h1>App</h1>
<ul>
<li><Link to="/about">About</Link></li>
</ul>
{this.props.children}
</div>
)
}
当我在同一目录中有一个.jsx和.scss文件且根名称相同时,我遇到了这个错误。
举个例子,如果你有Component。jsx和Component。SCSS在同一个文件夹中,你试着这样做:
import Component from ./Component
Webpack显然混淆了,至少在我的情况下,当我真正想要.jsx文件时,它试图导入scss文件。
我可以通过重命名.scss文件并避免歧义来修复它。我还可以显式地导入Component.jsx
我也遇到了同样的问题,并意识到我在JSX标记中提供了一个未定义的React组件。问题是要渲染的react组件是动态计算的,它最终没有定义!
错误说明:
不变性违反:元素类型无效:期望为字符串(对于内置组件)或类/函数(对于复合组件),但得到:undefined。您可能忘记从定义组件的文件中导出组件。检查C.的渲染方法,
产生此错误的示例:
var componentA = require('./components/A');
var componentB = require('./components/B');
const templates = {
a_type: componentA,
b_type: componentB
}
class C extends React.Component {
constructor(props) {
super(props);
}
// ...
render() {
//Let´s say that depending on the uiType coming in a data field you end up rendering a component A or B (as part of C)
const ComponentTemplate = templates[this.props.data.uiType];
return <ComponentTemplate></ComponentTemplate>
}
// ...
}
问题是提供了一个无效的“uiType”,因此产生了未定义的结果:
模板['无效字符串']
除了进口/出口问题提到。我发现使用React.cloneElement()向子元素添加道具,然后渲染它给了我同样的错误。
我不得不改变:
render() {
const ChildWithProps = React.cloneElement(
this.props.children,
{ className: `${PREFIX}-anchor` }
);
return (
<div>
<ChildWithProps />
...
</div>
);
}
to:
render() {
...
return (
<div>
<ChildWithProps.type {...ChildWithProps.props} />
</div>
);
}
有关更多信息,请参阅React.cloneElement()文档。
不要对一个问题的答案列表感到惊讶。造成这个问题的原因有很多;
对我来说,警告是
Warning .js:33警告:反应。createElement: type无效——期望一个字符串(对于内置组件)或一个类/函数(对于复合组件),但得到:undefined。您可能忘记从定义组件的文件中导出组件。在index.js:13处检查代码。
后面是错误
元素类型无效:期望为字符串(对于内置组件)或类/函数(对于复合组件),但得到:undefined。您可能忘记从定义组件的文件中导出组件。
我无法理解这个错误,因为它没有提到任何方法或文件名。我只是在看了上面提到的这个警告后才解决了这个问题。
我在index.js中有如下一行。
<ConnectedRouter history={history}>
当我用关键字“ConnectedRouter”谷歌上面的错误时,我在GitHub页面上找到了解决方案。
这个错误是因为,当我们安装react-router-redux包时,默认情况下我们安装这个包。
https://github.com/reactjs/react-router-redux但不是实际的库。
要解决这个错误,请使用@指定npm作用域来安装正确的包
npm install react-router-redux@next
不需要删除错误安装的软件包。它将被自动覆盖。
谢谢你!
PS:即使是警告也能帮助你。不要只看错误而忽略警告。
@Balasubramani M救了我。想再加一个来帮助人们。当你把太多的东西粘在一起,对版本漫不经心时,这就是问题所在。我更新了material-ui的一个版本,需要更改
import Card, {CardContent, CardMedia, CardActions } from "@material-ui/core/Card";
:
import Card from '@material-ui/core/Card';
import CardActions from '@material-ui/core/CardActions';
import CardContent from '@material-ui/core/CardContent';
import CardMedia from '@material-ui/core/CardMedia';
我发现了这个错误的另一个原因。它与CSS-in-JS向React组件中返回函数的顶层JSX返回空值有关。
例如:
const Css = styled.div`
<whatever css>
`;
export function exampleFunction(args1) {
...
return null;
}
export default class ExampleComponent extends Component {
...
render() {
const CssInJs = exampleFunction(args1);
...
return (
<CssInJs>
<OtherCssInJs />
...
</CssInJs>
);
}
我会得到这样的警告:
警告:反应。createElement: type无效——期望一个字符串(对于内置组件)或一个类/函数(对于复合组件),但得到:null。
接着是这个错误:
未捕获错误:元素类型无效:期望为字符串(对于内置组件)或类/函数(对于复合组件),但得到:null。
我发现这是因为我试图渲染的CSS-in- js组件没有CSS。我通过确保有CSS被返回而不是一个空值来修复它。
例如:
const Css = styled.div`
<whatever css>
`;
export function exampleFunction(args1) {
...
return Css;
}
export default class ExampleComponent extends Component {
...
render() {
const CssInJs = exampleFunction(args1);
...
return (
<CssInJs>
<OtherCssInJs />
...
</CssInJs>
);
}
在我的例子中,我花了很多时间来搜索和检查可能的方法,但只有通过这种方式来修复:在导入自定义组件时删除“{”,“}”:
import OrderDetail from './orderDetail';
我的错误做法是:
import { OrderDetail } from './orderDetail';
因为在OrderDetail .js文件中,我将OrderDetail导出为默认类:
class OrderDetail extends Component {
render() {
return (
<View>
<Text>Here is an sample of Order Detail view</Text>
</View>
);
}
}
export default OrderDetail;
假设你的错误是:
未捕获错误:不变量违反:元素类型无效:期望为字符串(对于内置组件)或类/函数,但got: object
你有两个选择:
您的导出文件可以有字默认,如
export default class someNameHere
那么您的导入将需要避免在它周围使用{}。就像在
import somethingHere from someWhereHere
避免使用默认单词。然后你的导出是这样的
export class someNameHere
然后导入必须使用{}。就像
import {somethingHere} from someWhereHere
我错误地试图从react-native而不是native-base导入容器和内容。
错误,因为这一行:
import { ActivityIndicator, RefreshControl, StyleSheet, View, Keyboard, Container, Content } from 'react-native';
下面是代码修复:
import { ActivityIndicator, RefreshControl, StyleSheet, View, Keyboard } from 'react-native';
import { Container, Content} from 'native-base';
在嵌套组件时,您是否厌倦了简单的导入/导出回答?
好吧,当我试图把道具从父母传递给孩子时,孩子应该渲染兄弟姐妹组件。
比方说,你有一个BaseDialog(父)组件,你想在其中有另一个SettingsDialog(子)组件,你想在其中呈现它的独立组件。
BaseDialog.tsx
import BaseButton from "./../BaseButton";
...
<SettingsDialog
BaseButton={<BaseButton title="Connect Wallet" />}
/>
你试图在settings。dialog。tsx的某个地方进行渲染
const SettingsDialog = (props: {
BaseButton: any;
}) => {
const { BaseButton } = props;
return(
<div>
{BaseButton}
</div>
);
}
(是的,这是一种方便的方法来传递组件的父->子,特别是当它们增长时,但在这里它会中断),但它会导致Uncaught Error: Invariant Violation:元素类型是无效的:期望一个字符串(对于内置组件)或类/函数,但got: object错误。
你能做的是,修复它,并仍然使用BaseButton,只是单独导入它。
Settings.Dialog.tsx
import BaseButton from "./../BaseButton";
const SettingsDialog = () => {
return(
<div>
<BaseButton title="Connect Wallet" />
</div>
);
}
在parent中
BaseDialog.tsx
<SettingsDialog />
您试图实现的是相同的,并将修复这个不直观的错误。
在我的例子中,我假设BaseDialog有一个名称标题的必需道具。
就我而言,
//details.js
import React from 'react'
const Details = (props) =>{
return <h1>Details</h1>
}
export default Details;
//main.js
import React from "react";
import { withRouter } from "react-router";
import {Route,BrowserRouter as Router,Redirect,Switch,Link} from "react-router-dom";
import Details from "./myAccount/details";
const Main = (props) => {
return (
<>
<Switch>
<Route path="/my-account/details" component={<Details />} />
</Switch>
</>
);
};
export default withRouter(Main);
===========================
Replaced with below one, error got fixed
component={<Details />} with component={Details}
对我来说,它是app config json的名称。在index.js中,导入是这样的:
import { AppRegistry } from 'react-native'
import App from './app'
import { name as appName } from './app.json'
AppRegistry.registerComponent(appName, () => App)
React Native不区分'。./app '和'./app.json'。不知道为什么。因此,我已经将app.json的名称更改为app.config.json,这已经解决了问题:
import { AppRegistry } from 'react-native'
import App from './app'
import { name as appName } from './app.config.json'
AppRegistry.registerComponent(appName, () => App)
我不相信我的情况和补救措施在这里讨论,所以我补充。
我有一个函数,它返回一个名为notification的对象
import IconProgress from '../assets/svg/IconProgress';
const getNotificationFromAttachment = (attachment) => {
const notification = {
Icon: IconProcessing,
iconProps: {},
};
...
notification.Icon = {IconProgress};
return notification
}
React期望一个字符串或类/函数作为变量通知的值。图标
所以你所需要做的就是将{IconProgress}改为IconProgress
见下图: