用vue3+ts+electron写的项目,axios发送post请求,只要加上data配置项,就请求失败,一直请求pending,去掉data就请求成功,但是返回的status是500
用vue3+ts, admin template写的项目,axios发送post请求,只要加上data配置项,就请求失败,一直请求pending,去掉data就请求成功,但是返回的status是500
·
- 配置代理多写了斜杠。
- qs.stringify(params)是把一个参数对象格式化为一个字符串,而qs.stringify()将对象 序列化成URL的形式,以&进行拼接。
- 参数不能包一层花括号,用了{}这个参数都是为空。
- 在electron框架下的cue.config.js文件下,注释掉app.use(bodyParser.json());和 app.use(bodyParser.urlencoded({ extended: false}));大概在79和81行。
app.use(bodyParser.json())
基本上告诉系统你想要使用json.bodyParser.urlencoded({extended: ...})
基本上告诉系统你是否想要使用简单的算法进行浅层解析(即错误)或者使用复杂算法进行深度解析,以便处理嵌套对象(即true).// app.use(bodyParser.json()); // create application/x-www-form-urlencoded parser // app.use(bodyParser.urlencoded({ extended: false}));
更多推荐
已为社区贡献1条内容
所有评论(0)