我正在尝试对反应16.2.0使用griddle-react 1.0.3,但收到以下错误“ Typeerror:无法读取未定义的属性'string'”。如何解决这个错误?我应该使用平板炉0.8.1来反应16.2.0还是这是我使用的正确密码?
W20181002-15:38:55.733(5)? (STDERR) TypeError: Cannot read property 'string'
of undefined
W20181002-15:38:55.734(5)? (STDERR) at Object.<anonymous>
(D:\react_projects\backstage-check\node_modules\griddle-
react\dist\module\components\ColumnDefinition.js:42:33)
W20181002-15:38:55.735(5)? (STDERR) at Module._compile
(module.js:652:30)
W20181002-15:38:55.735(5)? (STDERR) at Object.Module._extensions..js
(module.js:663:10)
W20181002-15:38:55.736(5)? (STDERR) at Module.load (module.js:565:32)
W20181002-15:38:55.737(5)? (STDERR) at tryModuleLoad (module.js:505:12)
W20181002-15:38:55.738(5)? (STDERR) at Function.Module._load
(module.js:497:3)
W20181002-15:38:55.738(5)? (STDERR) at Module.require (module.js:596:17)
W20181002-15:38:55.739(5)? (STDERR) at require
(internal/module.js:11:18)
W20181002-15:38:55.740(5)? (STDERR) at Object.<anonymous>
(D:\react_projects\backstage-check\node_modules\griddle-
react\dist\module\components\index.js:15:25)
W20181002-15:38:55.741(5)? (STDERR) at Module._compile
(module.js:652:30)
W20181002-15:38:55.741(5)? (STDERR) at Object.Module._extensions..js
(module.js:663:10)
W20181002-15:38:55.742(5)? (STDERR) at Module.load (module.js:565:32)
W20181002-15:38:55.743(5)? (STDERR) at tryModuleLoad (module.js:505:12)
W20181002-15:38:55.743(5)? (STDERR) at Function.Module._load
(module.js:497:3)
W20181002-15:38:55.744(5)? (STDERR) at Module.require (module.js:596:17)
W20181002-15:38:55.744(5)? (STDERR) at require
(internal/module.js:11:18)
W20181002-15:38:55.745(5)? (STDERR) at Object.<anonymous>
(D:\react_projects\backstage-check\node_modules\griddle-
react\dist\module\index.js:31:19)
W20181002-15:38:55.746(5)? (STDERR) at Module._compile
(module.js:652:30)
W20181002-15:38:55.747(5)? (STDERR) at Object.Module._extensions..js
(module.js:663:10)
W20181002-15:38:55.748(5)? (STDERR) at Module.load (module.js:565:32)
W20181002-15:38:55.748(5)? (STDERR) at tryModuleLoad (module.js:505:12)
W20181002-15:38:55.749(5)? (STDERR) at Function.Module._load
(module.js:497:3)
答案 0 :(得分:0)
尝试更新到最新版本。我敢打赌,您是使用npm i --save react-griddle@beta
安装的(不要使用beta版)。并使用npm i --save react-griddle
。
原因是propType,它是react核心的一部分。然后在较新的版本(现在已经很旧了)中,它被移到了自己的程序包中。
这里有捕获来说明这一点。
旧:
较新的版本:
该捕获显示了已编译的代码。
检查文档是否不清楚! https://reactjs.org/docs/typechecking-with-proptypes.html