繁体   English   中英

React.createElement:type不能为null,undefined,boolean或number。 它应该是一个字符串(用于DOM元素)…; 使用固定数据表CDN

[英]React.createElement: type should not be null, undefined, boolean, or number. It should be a string (for DOM elements)…; using fixed-data-table CDN

我有一个反应应用程序出现错误

Warning: React.createElement: type should not be null, undefined, boolean, or number. It should be a string (for DOM elements) or a ReactClass (for composite components). Check the render method of `BasicDataTableExample`.

Uncaught Error: Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: undefined. Check the render method of `BasicDataTableExample`.

我在https://facebook.github.io/fixed-data-table/getting-started.html的“ Create your Columns部分中

区别在于我正在使用CDN,而他们使用

const {Table, Column, Cell} = require('fixed-data-table');

代替。

我尝试像const Table = FixedDataTable.Table; ,当我进入调试器时似乎可以使用,但是该应用程序坏了。 看起来像:

<!DOCTYPE html>
<html>

    <head>
        <title>data-table-basic</title>
        <script src="https://unpkg.com/react@15.3.2/dist/react.js"></script>
        <script src="https://unpkg.com/react-dom@15.3.2/dist/react-dom.js"></script>
        <script src="https://cdnjs.cloudflare.com/ajax/libs/babel-core/5.8.23/browser.min.js"></script>
        <script src="https://cdnjs.cloudflare.com/ajax/libs/react-router/4.0.0-beta.3/react-router.min.js"></script>

        <script src="https://cdnjs.cloudflare.com/ajax/libs/fixed-data-table/0.6.3/fixed-data-table.min.js"></script>
        <link href="https://cdnjs.cloudflare.com/ajax/libs/fixed-data-table/0.6.3/fixed-data-table.min.css" rel="stylesheet">
    <head>


    <body>
            <a class="nav-link" href="/clock">clock</a>
            <a class="nav-link" href="/counter">counter</a>
            <a class="nav-link" href="/data-table-basic">data-table-basic</a>
            <a class="nav-link" href="/query-params-react-router">query-params-react-router</a>
            <a class="nav-link" href="/todo-list">todo-list</a>
            <a class="nav-link" href="/validated-form">validated-form</a>



        <div id="entry"></div>
        <div id="code"></div>

<script type="text/babel">
var destination = document.querySelector("#entry");

const Table = FixedDataTable.Table;
const Column = FixedDataTable.Column;
const Cell = FixedDataTable.cell;


class BasicDataTableExample extends React.Component {
  constructor(props) {
    super(props);

    this.state = {
      myTableData: [
        {name: 'Rylan'},
        {name: 'Amelia'},
        {name: 'Estevan'},
        {name: 'Florence'},
        {name: 'Tressa'},
      ],
    };
  }

  render() {
    return (
      <Table
        rowsCount={this.state.myTableData.length}
        rowHeight={50}
        headerHeight={50}
        width={1000}
        height={500}>
        <Column
          header={<Cell>Name</Cell>}
          cell={props => (
            <Cell {...props}>
              {this.state.myTableData[props.rowIndex].name}
            </Cell>
          )}
          width={200}
        />
      </Table>
    );
  }
}

ReactDOM.render(
    <div>
        <BasicDataTableExample/>
    </div>,
    destination
)

        </script>
    </body>

</html>

如何像使用CDN一样正确显示TableColumnCell 谢谢

这里的问题很可能是undefined Cell ,因为您尝试将其检索为

const Cell = FixedDataTable.cell;

,而属性以大写C开头:

const Cell = FixedDataTable.Cell;

如果使用的是CDN,则将函数包装到IIFE中:

(function() {
    //your code will be executed after window load
})();

蒂莫是对的。 但是代替

const Table = FixedDataTable.Table;
const Column = FixedDataTable.Column;
const Cell = FixedDataTable.Cell;

您可以在导入模块时使用以下方法来分解组件

import {Table, Column, Cell} from 'fixed-data-table';

更少的按键。

有关导入的MDN文档

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM