微信小程序调用PHP接口,微信小程序调用PHP后台接口教程

微信小程序调用PHP后台接口,解析纯html文本,效果图片预览

微信小程序调用PHP接口,微信小程序调用PHP后台接口教程_第1张图片

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'

你可能感兴趣的:(微信小程序调用PHP接口)