在页面通过?id={{id}}的这个值,在这里能读出来
onLoad: function (options) {
var id=options.id;
var nam=options.nam;
console.log("id是"+id+",name是:"+nam);//{param:1}
}
但是这个Id的值如何才能给到data里的cust_id呢?
直接在onload里面cust_id:id,它还是显示为空
在onready里面cust_id:id,它也是为空,不知道该怎么在加载时就把它显示出来
它就一直为空:显示不出来
onLoad:function(options){ var id = options.id; this.setData({ cust_id:id }) }
https://developers.weixin.qq.com/miniprogram/dev/reference/wxml/data.html