当函数有参数时如何使用 event.preventDefault()
我有这样的代码:
const upListCandy = (candy) => {
/* How i add event.preventDefault() and it word*/
axios.post("example.com", {
candyName: candy.name
}).then().catch()
}
这是我的按钮:
dataCandy?.map((item, index) => {
return(
<div key={index}>
<button onClick = {() => upListCandy(item)}>{item.name}</button>
</div>
)
})
我的问题是添加事件参数然后 event.preventDefault() 如何工作?
i have a code like this:
const upListCandy = (candy) => {
/* How i add event.preventDefault() and it word*/
axios.post("example.com", {
candyName: candy.name
}).then().catch()
}
here is my button:
dataCandy?.map((item, index) => {
return(
<div key={index}>
<button onClick = {() => upListCandy(item)}>{item.name}</button>
</div>
)
})
And my question is how add parameter of event then event.preventDefault() work?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
像这样修改你的 onclick
然后
modify your onclick like so
and then
我想你可以这样改变它
I think you can change it like this