国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > JavaScript > 正文

微信小程序之電影影評小程序制作代碼

2019-11-19 15:54:46
字體:
供稿:網(wǎng)友

本文實例為大家分享了微信小程序制作影評小程序的具體代碼,供大家參考,具體內(nèi)容如下

這是博主的項目包含的文件截圖:

這里寫圖片描述

首先如圖建立文件夾和page頁面

然后app.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頁面:

<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.jsPage({ /** * 頁面的初始數(shù)據(jù) */ data: { movies: [] }, /** * 生命周期函數(shù)--監(jiān)聽頁面加載 */ 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: '沒有更多數(shù)據(jù)', }) } else { that.setData({ movies: that.data.movies.concat(e.data.subjects) }) } } }) }, onReachBottom: function () { that.linkNet(++page); }})

運行程序結(jié)果如圖:

然后是hotPage.wxss:

image{ width:350rpx; height:280rpx;}

接著是第二個頁面的布局和第一個頁面一樣,所以直接把第一個頁面hotPage.wxml代碼copy過來就好了;
同樣comingSoon.js代碼和hotPage.js代碼也差不多,唯一需要改動的地方只有一個:

這里寫圖片描述

url和data改一下就好了

.wxss代碼一致;

運行結(jié)果如下:

接著是第三個頁面的代碼:

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>

頁面代碼:

var input;var that;// search.jsPage({ /** * 頁面的初始數(shù)據(jù) */ data: { movies: [] }, /** * 生命周期函數(shù)--監(jiān)聽頁面加載 */ 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 }) } }) }})

.wxss代碼同hotPage.wxss代碼一致;

運行代碼結(jié)果如下:

這里寫圖片描述

最后是詳情頁面,點擊影片后會跳轉(zhuǎn)到詳情頁面獲得影片的詳細信息:

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.jsPage({ /** * 頁面的初始數(shù)據(jù) */ data: { title: 0, imageUrl: 0, director: 0, casts: [], year: 0, rate: 0, summary: 0 }, /** * 生命周期函數(shù)--監(jiān)聽頁面加載 */ 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 }) } }) }})

運行代碼結(jié)果如下:

好了、全部代碼如上都給出了..加油

以上就是本文的全部內(nèi)容,希望對大家的學習有所幫助,也希望大家多多支持武林網(wǎng)。

發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 星子县| 扬州市| 昌宁县| 延吉市| 洛川县| 普宁市| 寿阳县| 麟游县| 临夏市| 南皮县| 乌审旗| 三台县| 岳西县| 旅游| 罗山县| 铜鼓县| 什邡市| 天台县| 共和县| 察雅县| 宁安市| 治县。| 旺苍县| 绥宁县| 工布江达县| 永昌县| 青岛市| 宁国市| 保定市| 闽侯县| 龙门县| 十堰市| 汪清县| 枣庄市| 怀宁县| 郧西县| 涿州市| 高台县| 古浪县| 象州县| 湖北省|