request.post( urlstr )
.set('Content-Type', 'application/x-www-form-urlencoded')
.send(da)
.end(function(err, res){
if (!err) {
console.log(res.body)
callback(res.body);
}else{
};
})
if (this.config.obj.productInfo) {
this.config.obj.productInfo = encodeURI( this.config.obj.productInfo );
};
var bodyQueryStr = this.config.obj;
var da = '';
for (var a in bodyQueryStr) {
da += a +'='+ bodyQueryStr[a] + '&';
};
使用SuperAgent发post请求 当参数过长时 失效了 什么原因呢 和 application/x-www-form-urlencoded 有关系吗