Warning: bind(): React component methods may only be bound to the component instance. See ...

前端之家收集整理的这篇文章主要介绍了Warning: bind(): React component methods may only be bound to the component instance. See ...前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

出现这种错误一般是在react使用.bind(this,XX),如:

<a onClick={t.toGoods.bind(this,1)} href='javascript:;'></a>
解决:将this用null替换:
<a onClick={t.toGoods.bind(null,1)} href='javascript:;'></a>
原文链接:https://www.f2er.com/react/306370.html

猜你在找的React相关文章