我通过小程序发起请求,从后端拿到res.result这样一些数据
在小程序通过{{res.result}}显示为[object object]
通过console.log显示如下内容,我要使用何种方式或者解析才能显示正常的数据
我通过console.log看到我的数据在soap:Body: {GetCurrentRoomStatusGraphResponse: {…}}这个里面
//console.log打印的值
{soap:Envelope: {…}}
soap:Envelope: @xmlns:soap: "http://schemas.xmlsoap.org/soap/envelope/"
@xmlns:xsd: "http://www.w3.org/2001/XMLSchema"
@xmlns:xsi: "http://www.w3.org/2001/XMLSchema-instance"
soap:Body: {GetCurrentRoomStatusGraphResponse: {…}}
__proto__: Object
__proto__: Object
我试图通过res.result[0] , res.result.soap:Envelope 还有res.result[soap:Envelope]都无法进一步处理数据
试试这个
res.result["soap:Envelope"]
,注意引号