gpt4 book ai didi

node.js - 使用 fetch 方法从 Express 端点获取数据显示错误 React Redux

转载 作者:太空宇宙 更新时间:2023-11-04 02:15:13 25 4
gpt4 key购买 nike

我在我的应用程序中使用 redux。当应用程序安装时,我尝试使用该操作获取所有项目

export default function getItems(){
return function (dispatch) {
dispatch(getJobsRequest());
return fetch('http://localhost:5000/items', {
method: 'GET',
headers: {
'Content-Type': 'application/json',
'Authentication': localStorage.getItem('token')
}
}).then(function(response){
console.log(response)
return response.json()
}).then(function(response){
console.log(response)
dispatch(getJobsSuccess())
}).catch(function(error){
console.log('error')
})
}

}

但是中间发生了一些奇怪的事情,我可以在控制台中看到响应对象。但没有到达快速终点

`router.get('/items',function(req,res){
console.log('im called')

})`

最佳答案

我明白了。由于它是单页应用程序,后备处理存在问题。

它使用公共(public)文件index.html 来处理获取请求,因此我必须按如下方式处理它:

app.get('*', function(req,res){
if(req.accept('html')){res.sendFile(path.join(__dirname,''public))}
next() })

关于node.js - 使用 fetch 方法从 Express 端点获取数据显示错误 React Redux,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36070586/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com