React Table - 在 Cell 函数中访问状态值
React Table - access state values inside Cell functions
我有多个使用 Cell 函数的 React-Table 列:
主要 class :
Cell: function (props) {
return (
<span>
<ChildClass
id={props.original._id} myemail={this.state.email}
/>
</span>
);
},
所以我得到错误:TypeError: Cannot read 属性 'state' of undefined
我想使用 Cell 函数中的状态。
谢谢
函数未获取 "this",您必须将其设为 lambda(箭头)函数或需要绑定 this。
Cell:(props) => {
return (
<span>
<ChildClass
id={props.original._id} myemail={this.state.email}
/>
</span>
);
},
我希望这对你有用,或者以其他方式分享代码的更多细节。
我有多个使用 Cell 函数的 React-Table 列:
主要 class :
Cell: function (props) {
return (
<span>
<ChildClass
id={props.original._id} myemail={this.state.email}
/>
</span>
);
},
所以我得到错误:TypeError: Cannot read 属性 'state' of undefined
我想使用 Cell 函数中的状态。
谢谢
函数未获取 "this",您必须将其设为 lambda(箭头)函数或需要绑定 this。
Cell:(props) => {
return (
<span>
<ChildClass
id={props.original._id} myemail={this.state.email}
/>
</span>
);
},
我希望这对你有用,或者以其他方式分享代码的更多细节。