微信小程序页面带参数跳转及接收参数内容navigator

微信小程序页面带参数跳转及接收参数内容navigator

 

功能从index页面跳转到news页面,并在news页面获取id及imgUrl 
index.wxml


     
     {{item.name}}

在news.js中:

onLoad: function (options) {

// 请求接口

var news = this;

wx.request({

url: 'http://www.test.com/wx/interface/article/article.php?articlecate',

data: {

id: options.id  //将参数id传递给后台

},

// 传输格式json

header: {

'content-type': 'application/json'

},

method: "GET",//数据传输类型

success: function (res) {

console.log(res.data)

// 将数据赋值给变量

news.setData(

{

articles: res.data.data.articles,

}

)

}

})

// --栏目分类请求接口

},

原文地址:https://blog.csdn.net/a419419/article/details/79094824

你可能感兴趣的:(微信小程序)