// pages/movie/movie.js
Page({
/**
* 页面的初始数据
*/
data: {
motto:"hello2",
msg:"你好中国",
list:[]
},
goDetail:function(event){
console.log(event.currentTarget.dataset.id);
wx.navigateTo({
url: '../detail/detail?id='+event.currentTarget.dataset.id,
})
},
/**
* 生命周期函数--监听页面加载
*/
onLoad: function (options) {
wx.showLoading({
title: '加载中',
})
//保存this对象 =》 代表的是page对象
var _this = this;
wx.request({
url: 'https://m.maoyan.com/ajax/movieOnInfoList',
header: {
'content-type': 'application/json' // 默认值
},
success (res) {
wx.hideLoading();
var movieList = res.data.movieList;
for(var i=0; i