开发人员只需要完成普通的页面跳转到结果页过程的逻辑开发即可。
开发建议,函数编写尽量使用传参方式,减少页面全局变量的使用
eg:
getGoodDetial(id){
goodDetailApi({
id:id
}).then(res=>{
this.setData({
goodId: res.id
})
})
}
eg: error 错误例子
getGoodDetial(){
goodDetailApi({
id:this.data.goodId
}).then(res=>{
})
}