app-parameter 小程序返回app传参格式?
app打开小程序 小程序里在返回app并携带参数,为什么ios端获取不到?这个参数格式是什么样的?代码哪里有问题?
<button class="completeBtn" open-type="launchApp" app-parameter="{{wechatResult}}" binderror="launchAppError">完成</button>
onLoad: function (options) {
var test='id='+options.id+'&name='+options.name
this.setData({
wechatResult:test
})
},