我得到这个错误:

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;

当前回答

对我来说,这是因为我的组件由于某种原因没有使用*符号导出,所以我必须显式地命名导出

// index.ts
export * from "./Button"

to

// index.ts
export { Button } from "./Button"

其他回答

我不相信我的情况和补救措施在这里讨论,所以我补充。

我有一个函数,它返回一个名为notification的对象

import IconProgress from '../assets/svg/IconProgress';

  const getNotificationFromAttachment = (attachment) => {
    const notification = {
    Icon: IconProcessing,
    iconProps: {},
  };
  
  ...
  notification.Icon = {IconProgress};
  
  return notification
}

React期望一个字符串或类/函数作为变量通知的值。图标

所以你所需要做的就是将{IconProgress}改为IconProgress

见下图:

对我来说,这是因为我的组件由于某种原因没有使用*符号导出,所以我必须显式地命名导出

// index.ts
export * from "./Button"

to

// index.ts
export { Button } from "./Button"

除了进口/出口问题提到。我发现使用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()文档。

React Native最新版本0.50及以上也有类似问题。

对我来说,这是一种区别:

import App from './app'

and

import App from './app/index.js'

(后者解决了这个问题)。我花了好几个小时才发现这个奇怪的,很难注意到的细微差别:(

在升级所有库到最新版本时,我得到了这个错误

在旧版本中,以下是导入

import { TabViewAnimated, TabViewPagerPan } from 'react-native-tab-view';

但在新版本中,它们被以下内容所取代

import { TabView, PagerPan } from "react-native-tab-view";

因此,请检查正确的所有导入可用的使用控制单击