我的后端看起来像这样
app.get('/alert', (req, res) => {
res.send("success")
})
在 React 中我正在做这个
const alert = () => {
Axios.get('http://localhost:3001/alert').then(res => alert(res.data))
}
该函数在单击按钮时运行,并且什么都不做。也没有任何错误。但是,如果我控制台日志
res.data
而不是警报,或者将状态设置为 res.data
的值,它就可以正常工作。可能是什么问题,如果什么都没有出现,我该如何调试?