// pages/header/header.js
Page({
/**
* 页面的初始数据
*/
data: {
mode: "scaleToFill",
indicatorDots: true,
autoplay: true,
loading: false,
plain: false,
interval: 2000,
duration: 1000
},
onLoad: function () {
var that = this//不要漏了这句,很重要
wx.request({
url: 'http://www.ccnbkj.cn/index.php/Home/api/',
headers: {
'Content-Type': 'application/json'
},
success: function (res) {
//console.log(res.data.title)
//将获取到的json数据,存在名字叫zhihu的这个数组中
that.setData({
zhihu: res.data.banner,
article: res.data.article,
title: res.data.title,
partner: res.data.partner,
partner_title: res.data.partner_title,
category_meta_title: res.data.category_meta_title
//res代表success函数的事件对,data是固定的,stories是是上面json数据中stories
})
}
})
}
})
为什么用手机预览就看到不数据那
相似问题