解决办法:
json转字符串
const params = { orderEncode: this.orderEncode, tradeType: 1, requestInfo: request, responseInfo: JSON.stringify(response), };
当后台解析responseInfo值的时候,若接口报参数不正确,要进行json解析为字符串
解决办法:
json转字符串
const params = { orderEncode: this.orderEncode, tradeType: 1, requestInfo: request, responseInfo: JSON.stringify(response), };
当后台解析responseInfo值的时候,若接口报参数不正确,要进行json解析为字符串