request模块 post请求form参数类型 number/boolean to string
例:
request.post({
url: 'www.xxx.com',
form: {
number : 1,
boolean : true
}
},function (err,resp,body) {
});
接口收到的number: ‘1’, boolean : ‘true’, 整数和布尔都转成了字符串?why?
3 回复
我表示从没遇到过这个问题;你设置表单提交头试试
是的,就是这样,你自己转下
@htoooth 我知道结果是这样,但为什么是这样?有什么特殊原因?用postman模拟调用接口收到的是正确的类型