vue使用fetch post 方法500错误页面 Cannot read property ‘*‘ of undefined
问题描述:vue 里面使用 fetch.post 方法报 500 错误
服务端:
客户端:
结果:
有500错误的页面。
解决方法:
在使用方法前,添加上 bodyParser ,因为 req.body.id 中的 body 是从这 bodyParser 来的。
添加之后:
问题描述:vue 里面使用 fetch.post 方法报 500 错误
服务端:
客户端:
结果:
有500错误的页面。
解决方法:
在使用方法前,添加上 bodyParser ,因为 req.body.id 中的 body 是从这 bodyParser 来的。
添加之后: