类型“string”上不存在属性“error_code”?
能正常使用,但有这个问题提醒怎么回事?
getfaceinfo(par: any) {
wx.request({
url: 'https://aip.baidubce.com/rest/2.0/face/v3/detect?access_token=' + this.data.token,
method: 'POST',
header: { 'Content-Type': 'application/json' },
data: par,
success: res => {
console.log(res)
if (res.statusCode === 200 && res.data.error_code === 0){
this.setData({
facedate: res.data.result.face_list[0]
})
}
}
})
},