這是博主的項目包含的文件截圖: javascript
首先如圖創建文件夾和page頁面java
而後app.json頁面更新代碼以下:json
{ "pages": [ "pages/hotPage/hotPage", "pages/comingSoon/comingSoon", "pages/search/search", "pages/more/more" ], "window": { "backgroundTextStyle": "light", "navigationBarBackgroundColor": "#fff", "navigationBarTitleText": "WeChat", "navigationBarTextStyle": "black" }, "tabBar": { "list": [{ "pagePath": "pages/hotPage/hotPage", "text": "本地熱映" },{ "pagePath": "pages/comingSoon/comingSoon", "text": "即將上映" },{ "pagePath": "pages/search/search", "text": "影片搜索" }] } }
而後是app.wxss頁面(爲後面的頁面樣式寫的):小程序
/**app.wxss**/ .container { height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: space-between; padding: 200rpx 0; 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頁面:api
<view class="movies" wx:for="{{movies}}" id="{{item.id}}" bindtap="jumpTomore"> <view class="myimage"> <image src="{{item.images.medium}}"></image> </view> <view class="moveInfo"> <view class="title"> 名稱:{{item.title}} </view> <view class="daoyan"> 導演:{{item.directors["0"].name}} </view> <view class="yanyuanlist"> <view class="left">演員:</view> <view class="right"> <block wx:for="{{item.casts}}">{{item.name}} </block> </view> </view> <view class="fenlei"> 分類:{{item.genres}} </view> <view class="year"> 上映時間:{{item.year}} </view> </view> </view>
而後是hotPage.js頁面:微信
var that; var page = 0; // more.js Page({ /** * 頁面的初始數據 */ 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); } })
運行程序結果如圖: app
而後是hotPage.wxss:xss
image{ width:350rpx; height:280rpx; }
接着是第二個頁面的佈局和第一個頁面同樣,因此直接把第一個頁面hotPage.wxml代碼copy過來就行了;
一樣comingSoon.js代碼和hotPage.js代碼也差很少,惟一須要改動的地方只有一個:
函數
url和data改一下就行了
.wxss代碼一致;
運行結果以下:
接着是第三個頁面的代碼:
search.wxml頁面代碼:
<input placeholder="輸入關鍵字" bindinput="myInput" /> <button bindtap="mySearch">搜索</button> <view class="movies" wx:for="{{movies}}" id="{{item.id}}" bindtap="jumpTomore"> <view class="myimage"> <image src="{{item.images.medium}}"></image> </view> <view class="moveInfo"> <view class="title"> 名稱:{{item.title}} </view> <view class="daoyan"> 導演:{{item.directors["0"].name}} </view> <view class="yanyuanlist"> <view class="left">演員:</view> <view class="right"> <block wx:for="{{item.casts}}">{{item.name}} </block> </view> </view> <view class="fenlei"> 分類:{{item.genres}} </view> <view class="year"> 上映時間:{{item.year}} </view> </view> </view>
search.js頁面代碼:
var input; var that; // search.js Page({ /** * 頁面的初始數據 */ data: { movies: [] }, /** * 生命週期函數--監聽頁面加載 */ onLoad: function (options) { that = this; }, myInput: function (e) { input = e.detail.value; }, mySearch: function () { wx.request({ header: { "Content-Type": "json" }, url: 'https://api.douban.com/v2/movie/search?q=' + input, success: function (e) { that.setData({ movies: e.data.subjects }) } }) } })
search.wxss代碼同hotPage.wxss代碼一致;
運行代碼結果以下:
最後是詳情頁面,點擊影片後會跳轉到詳情頁面得到影片的詳細信息:
more.wxml頁面代碼:
<!--more.wxml--> <image src="{{imageUrl}}"></image> <view class="moveInfo"> <view class="title">名字:{{title}}</view> <view class="director">導演:{{director}}</view> <view class="castleft">主演:</view> <view class="casts" wx:for="{{casts}}"> <block class="castright">{{item.name}}</block> </view> <view class="year">年份:{{year}}</view> <view class="rate">評分:{{rate}}</view> <view class="summary">介紹:{{summary}}</view> </view>
more.js代碼:
var that; // more.js Page({ /** * 頁面的初始數據 */ data: { title: 0, imageUrl: 0, director: 0, casts: [], year: 0, rate: 0, summary: 0 }, /** * 生命週期函數--監聽頁面加載 */ onLoad: function (options) { that = this; wx.request({ header: { "Content-Type": "json" }, url: 'https://api.douban.com/v2/movie/subject/' + options.id, success: function (e) { console.log(e) that.setData({ title: e.data.original_title, imageUrl: e.data.images.large, director: e.data.directors["0"].name, casts: e.data.casts, year: e.data.year, rate: e.data.rating.average, summary: e.data.summary }) } }) } })
運行代碼結果以下:
好了、所有代碼如上都給出了..加油