onLoad(options){
if (options) {
let value1 = decodeURIComponent(options.value1)
let value2 = decodeURIComponent(options.value2)
...调用后台接口查询数据
}
}
我是通过这种方式接收参数的,如果想验证可以通过编译器模拟:
onLoad(options){
if (options) {
let value1 = decodeURIComponent(options.value1)
let value2 = decodeURIComponent(options.value2)
...调用后台接口查询数据
}
}
我是通过这种方式接收参数的,如果想验证可以通过编译器模拟: