小程序借口传值拼接
Posted fengshaopu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了小程序借口传值拼接相关的知识,希望对你有一定的参考价值。
首先获取到值:
var id = options.id
console.log(id);
然后对应借口传值就好:
app.http.f3(id).then((res)=>{
console.log(res);
})
然后在那边接收:拼接
function f3(id){
return g(baseUrl+k.f3+"?goods_id="+id,{},"get")
}
以上是关于小程序借口传值拼接的主要内容,如果未能解决你的问题,请参考以下文章