目前开发小程序 已经在后台使用接口B生成了小程序码图片 并保存到本地 扫码后 小程序怎么取参数值呢
我是在开发工具里 通过二维码编译扫我保存的小程序码 然后 用下面的代码 取不到值 undefined
onLoad: function (options) {
// options 中的 scene 需要使用 decodeURIComponent 才能获取到生成二维码时传入的 scene
var scene = decodeURIComponent(options.scene);
console.log(scene);
}
在 onload options 里