写hooks遇到的,大概率是this的问题,
标签里写成箭头函数
<button onClick={
() => setCounter(counter + 1)}>+1</button>
或者用bind绑定this
onClick={
increment.bind(this)}
建议用第一种
如果解决了给个赞吧!
写hooks遇到的,大概率是this的问题,
标签里写成箭头函数
<button onClick={
() => setCounter(counter + 1)}>+1</button>
或者用bind绑定this
onClick={
increment.bind(this)}
建议用第一种
如果解决了给个赞吧!