美文网首页
nodejs get请求 gbk编码格式解决中文乱码问题

nodejs get请求 gbk编码格式解决中文乱码问题

作者: 杨少东 | 来源:发表于2020-08-25 15:11 被阅读0次

var json = {
'content': '哈哈'
}
var content = querystring.stringify(json, null, null,
{
encodeURIComponent: function (str) {
return gbk.encodeURIComponent(str);
}
});
var url = smsapi + "?" + content;
request({
timeout: 5000, // 设置超时
method: 'GET', //请求方式
url: url, //url
}, function (error, response, body) {
if (!error && response.statusCode == 200) {
console.log(body);
} else {
console.log("error");
}
});

gbk.js文件 下载地址 :http://cdn.jjfa.net/GBK.js

相关文章

网友评论

      本文标题:nodejs get请求 gbk编码格式解决中文乱码问题

      本文链接:https://www.haomeiwen.com/subject/tohzjktx.html