无法在 GET 请求中发出警报

问题描述 投票:0回答:0

我的后端看起来像这样

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
的值,它就可以正常工作。可能是什么问题,如果什么都没有出现,我该如何调试?

javascript node.js reactjs asynchronous axios
© www.soinside.com 2019 - 2024. All rights reserved.