本文实例为大家分享了微信小程序制作影评小程序的具体代码,供大家参考,具体内容如下
这是博主的项目包含的文件截图:
搜索"
}]
}
}
Box-sizing: border-Box;
}
/* hotPage.wxss */
.movies{
display:flex;
}
.myimage{
flex: 1;
}
.moveInfo{
flex: 2;
}
.yanyuanlist{
display:flex;
}
.left{
flex:1;
}
.right{
flex:2;
}
然后是hotPage.wxml页面:
<view class="myimage">
<image src="{{item.images.medium}}">名称:{{item.title}}
分类:{{item.genres}}
<image src="{{item.images.medium}}">
然后是hotPage.js页面:
/**
- 页面的初始数据
*/
data: {
movies: []
},/** - 生命周期函数--监听页面加载
/
onLoad: function (options) {
that = this;
that.linkNet(0);
},jumpTomore: function (e) {
console.log(e.currentTarget.id);
wx.navigateTo({
url: '/pages/more/more?id=' + e.currentTarget.id,})
},linkNet: function (page) {
wx.request({
header: {
"Content-Type": "json"
},url: 'https://api.douban.com/v2/movie/in_theaters',data: {
start: 10 page,count: 10,city: '成都'
},success: function (e) {
console.log(e);
if (e.data.subjects.length == 0) {
wx.showToast({
title: '没有更多数据',})
} else {
that.setData({
movies: that.data.movies.concat(e.data.subjects)
})
}
}
})
},onReachBottom: function () {
that.linkNet(++page);
}
})
运行程序结果如图:
然后是hotPage.wxss:
接着是第二个页面的布局和第一个页面一样,所以直接把第一个页面hotPage.wxml代码copy过来就好了; 同样comingSoon.js代码和hotPage.js代码也差不多,唯一需要改动的地方只有一个:
url和data改一下就好了
.wxss代码一致;
运行结果如下:
<view class="movies" wx:for="{{movies}}" id="{{item.id}}" bindtap="jumpTomore">
<view class="myimage">
<image src="{{item.images.medium}}">