华为p40手机上出现vconsole是什么意思?
发布网友
发布时间:2022-04-21 18:23
我来回答
共1个回答
热心网友
时间:2023-05-28 05:50
初步判断是前端post请求传递的报文序列化出问题了。
本地测试前端代码,可以复现该问题。报文的组装如下:
exchange(id: string, storeId: string, uid: string, key: string): Observable
{
let outTradeNo = Guid.newGuid();
const data = {
id: id,
storeId: storeId,
uid: uid,
key: key,
outTradeNo: outTradeNo
}
let body = JSON.stringify(data);
...
}