在hbuilderx中设置云函数返回数字,然后通过axios请求结果乱码
云函数
exports.main = async (event, context) => {
return 123;
};
axios请求
async function checkVersion(appid){
let res = await axios.post(
'https://fc-mp-39d783c8-f563-4ce4-a4fd-7e6edf96d553.next.bspapp.com/update',
{
params: { appid },
}
);
console.log(res);
return res.data;
}
DCloud_uniCloud_CRL
乱码指得什么乱码?接收到数据的类型不对还是编码格式不对?
2022-11-24 15:01