node网络组件axios使用填坑,服务端无法接收数据,post请求json对象被转为string
程序员文章站
2022-06-22 19:06:33
背景:按照官网demo配置该组件后,服务器无法接收post或者get请求参数,用postman测试接口正常。1、导入axios并使用默认配置初始化组件const axios = require('axios').default;2、发起post网络请求(坑1)axios.post('/user', { firstName: 'Fred', lastName: 'Flintstone' }) .then(function (response) { co....
背景:按照官网demo配置该组件后,服务器无法接收post或者get请求参数,用postman测试接口正常。
1、导入axios并使用默认配置初始化组件
const axios = require('axios').default;
2、发起post网络请求(坑1)
axios.post('/user', {
firstName: 'Fred',
lastName: 'Flintstone'
})
.then(function (response) {
console.log(response);
})
.catch(function (error) {
console.log(error);
});
3、发起get网络请求(坑2)
axios.get('/user', {
params: {
ID: 12345
}
})
.then(function (response) {
console.log(response);
})
.catch(function (error) {
console.log(error);
})
.then(function () {
// always executed
});
填坑1:
源码如下图,在lib目录下defaults文件里面的51行,默认会将json object转换为string。大多数服务器接口,没有作解析该数据格式的兼容。
】
解决方案:
使用qs将数据转换,避免被转成jsonstring。
axios.post('/user', qs.stringify({
firstName: 'Fred',
lastName: 'Flintstone'
}))
.then(function (response) {
console.log(response);
})
.catch(function (error) {
console.log(error);
});
填坑2:
其实也不算是坑。get请求对象自动添加在url链接上时候,设置参数的时候需要加一成params属性。
{
params: {
ID: 12345
}
}
正确
params: {
ID: 12345
}
错误
本文地址:https://blog.csdn.net/eesc55/article/details/107510056