liukun2009 发表于 2017-12-30 21:49:12

原创:微信小程序调用PHP后台接口,解析纯html文本

1、微信js动态传参:  wx.request({
  url: 'https://m.****.com/index.php/Home/Xiaoxxf/activity_detail?a_id='+options.id,//含富文本html
  data: {
  is_detail:1
  },
  method: 'GET', // OPTIONS, GET, HEAD, POST, PUT, DELETE, TRACE, CONNECT
  header: {
  'Content-Type': 'application/json'
  },
  success: function (res) {
  that.setData({
  Article: res.data    //一维数组json编码后对象
  })
  /**
  * html解析
  */
  var article = that.data.Article;
  console.log("article = " + article);
  WxParse.wxParse('article', 'html', article, that, 5);
  console.log(res.data);
  },
  fail: function (res) { },
  complete: function (res) { },
  }),
  其中,options.id是由前一个wxml页面动态传过来的参数。
页: [1]
查看完整版本: 原创:微信小程序调用PHP后台接口,解析纯html文本