我正在尝试在Reactjs中使用context
,但我一直在接受这个警告,我已尽量尝试使用它,但似乎没有任何效果,
我看了他们发给你的所有评论的帖子,没多大帮助。
遵循一些在线教程,但似乎无法解决我的问题,我不确定我做错了什么。
错误:Warning: owner-based and parent-based contexts differ (values: `` vs ``) for key (filterItems) while mounting CategorieChooser
这里的布局基本上是
var Application = React.createClass({ childContextTypes: { filterItems: React.PropTypes.array }, getChildContext: function() { return { filterItems: [] }; }, render: function() { return ( <div> <Banner /> <CategorieChooser /> </div> ); } }); var CategorieChooser = React.createClass({ contextTypes: { filterItems: React.PropTypes.array }, ... })