nodejs在网页请求的后端如何重定向到另外一个页面

2024-12-23 03:17:07
推荐回答(1个)
回答1:

调用官方api的时候,有一步需要用post发送请求,于是上网查了些资料,发现一般发送post请求的做法是(下面是简化版代码):
var querystring = require('querystring');
var https = require('https');

var post_data = querystring.stringify({
"name":"BOb",
"age":30,
"job":"teacher"
});

var post_req = https.request(post_opt,function(res){
//some code here
});
post_req.write(post_data);
post_req.end();

然而官方api要求发送的数据是这样的:
{
"action_name": "QR_LIMIT_SCENE",
"action_info": {
"scene": {
"scene_id": 1000
}
}
}

也就是说,调用了querystring.stringify方法之后,变成了action_name=QR_LIMIT_SCENE&action_info=。