- PC端小程序 打开app 无法加载数据?
app-service.js: TypeError: Object.getOwnPropertyDescriptors is not a function at i (file://6.js/:19496:905) at file://6.js/:19496:1717 at Array.reduce (native) at definitionFilter (file://6.js/:19496:1627) at file://5.js/:2:2967301 at file://5.js/:2:2967252 at Array.forEach (native) at A.C.callDefinitionFilter (file://5.js/:2:2967128) at Object.e (file://5.js/:2:3112716) at he (file://5.js/:2:3215858) 手机端正常。
2020-12-22 - wx.navigateTo 传递参数
ex:界面传递时,当参数中 含有?时。自动被截断 var TEST = {"zwm":"A?x"}; wx.navigateTo({ url: '../nearstore/nearstore?value=' + JSON.stringify(TEST) }) //nearstore 界面onLoad接收部分: console.log("接收的数据为:" + options.value ); 为什么 会打印出: 接收的数据为:{"zwm":"A 就没了。 Unexpected end of JSON input;at "pages/nearstore/nearstore" page lifeCycleMethod onLoad function SyntaxError: Unexpected end of JSON input 像这种情况 怎么处理
2017-07-24