老師,請回答,VM868:1 SyntaxError: Unexpected token o in JSON at position 1 at JSON.parse (<anonymous>) at comment.js:25
wx.cloud.callFunction({name:'getdetail',data:{movieid:options.movieid}}).then(res=>{console.log(res);this.setData({detail:JSON.parse(res.result)});wx.hideLoading();}).catch(err=>{console.error(err);wx.hideLoading();})
出錯
VM868:1 SyntaxError: Unexpected token o in JSON at position 1
? ? at JSON.parse (<anonymous>)
? ? at comment.js:25
2020-08-14
代碼提供截圖會更容易看出代碼層次結構。
錯誤信息上看,是JSON.parse()的參數格式不對,請在控制臺打印一下JSON.parse()的參數,看下值是什么,就能找到問題了。
2020-08-14
對的,謝謝老師,直接detail:res.result,去掉JSON.parse即可。
then(res=>{console.log(typeof(res.result));this.setData({detail:res.result});wx.hideLoading();})