码迷,mamicode.com
首页 > 微信 > 详细

微信端处理服务器端返回值

时间:2021-04-13 12:05:18      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:this   nav   navig   ade   ase   url   success   服务器   tar   

在wx上建立global的变量,然后request的时候,发送出去

关键代码,在请求体外

const app = getApp();

在请求体内

 historyId:app.globalData.zhanbuYao.data.historyId,


在方法体第一行的console.log 可以看到,取值的路径。

zhanbuView:util.throttle(function(e){
 //console.log(e);
// //获取到它的绑定id
// console.log(e.target.dataset.yao);
// console.log(e.target.dataset.author);
const app = getApp();
//console.log(app);
wx.request(
  
  {
  url: ‘https://www.xxxx.com/Wx/zhanbuView‘,
//  url: ‘http://127.0.0.1:8080/Wx/zhanbuView‘ , 
  
data:{
    yaoId:e.target.dataset.yao,
    author:e.target.dataset.author,
   // historyId:e.target.
   historyId:app.globalData.zhanbuYao.data.historyId,
    
  },
  header:{
    ‘content-type‘:‘application/x-www-form-urlencoded‘
  },
  success:(res)=>{
   // console.log(res.data);
    //console.log(res.data.zhouyiAuthor.name);
    const app = getApp();
    this.setData({Shiyou:app.globalData.zhanbuShiyou});
 //   console.log(Shiyou);
    
        app.globalData.zhanbuViewAuthor=res.data.zhouyiAuthor.name,
        app.globalData.zhanbuViewAuthorInfo=res.data.zhouyiAuthor.info,
      
        app.globalData.zhanbuViewContent=res.data.content,
        app.globalData.zhanbuViewXiang=res.data.xiang,
        app.globalData.zhanbuViewYaoId=e.target.dataset.yao
        wx.navigateTo({
          url: ‘../zhanbuView/zhanbuView‘,
          complete: (res) => {},
         // events: events,
          fail: (res) => {},
          success: (result) => {},
        })


  }

 

微信端处理服务器端返回值

标签:this   nav   navig   ade   ase   url   success   服务器   tar   

原文地址:https://www.cnblogs.com/sdgtxuyong/p/14647597.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!