How to get the query parameter in the Url Link jump of the applet?

onLoad(options){
  if (options) {
    let value1 = decodeURIComponent(options.value1)
    let value2 = decodeURIComponent(options.value2)
    ...调用后台接口查询数据
  }
}

I receive parameters in this way, if you want to verify, you can simulate it through the compiler:

Guess you like

Origin blog.csdn.net/m0_57033755/article/details/131727302