superagent post模拟提交表单到数据库中文乱码
求助大佬!superagent post提交表单数据到数据库中文乱码,一直找不到是哪一块编码的问题所致,代码如下:
const headers = {
"Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8",
"Accept-Encoding": "gzip, deflate",
"Accept-Language": "zh-CN,zh;q=0.9,en;q=0.8",
"Connection": "keep-alive",
"Cache-Control": "no-cache",
'User-Agent': Util.randomUserAgent()
};
const basicFormData = {
'id': 0,
'enews': 'AddNews',
'classid': 14,
'bclassid': 10,
'oldchecked': 0,
'ecmsnfrom': 1,
'ecmscheck': 0,
'havetmpic': 0,
'isgood': 0,
'firsttitle': 0,
'dokey': 1,
'copyimg': 1,
'getfirsttitlepic': 1,
'getfirsttitlespicw': 375,
'getfirsttitlespich': 250
};
const publishFormData = {
'title': '测试标题,测试标题测试标题测试标题',
'keyboard': 'aaa,bbb,cccc',
'smalltext': '测试描述111的送达方式方法是',
'newstext': '内容内容内容'
};
agent
.post('submit.php')
.set(headers)
.set('Content-Type', 'multipart/form-data;')
.type('form')
.send(Object.assign(basicFormData, publishFormData))
.charset('gb2312')
.then(result => {
console.log(result.text);
})
.catch(err => {
console.error(err);
})
网站编码是gb2312,设置了charset为gb2312,返回result.text的内容编码是正常的,但是模拟提交表单到数据库后就乱码了,数据库用是mysql,数据库编码是utf8。
乱码如下图所示: