美文网首页
电影项目——电影列表

电影项目——电影列表

作者: 皮皮灬 | 来源:发表于2019-08-29 17:10 被阅读0次

安装request-promise

效果

image.png
新建云函数
修改 index.js 右键创建并部署
// 云函数入口文件
const cloud = require('wx-server-sdk')

cloud.init()

var rp = require('request-promise');

// 云函数入口函数
exports.main = async (event, context) => {
  return rp(`http://api.douban.com/v2/movie/in_theaters?apikey=0df993c66c0c636e29ecbb5344252a4a&start=${event.start}&count=${event.count}`)
    .then(function (res) {
      console.log(res)
      return res
    })
    .catch(function (err) {
      console.log(err)
    });
}

修改movie.js

// miniprogram/pages/movie/movie.js
Page({

  /**
   * 页面的初始数据
   */
  data: {
      movieList:[]
  },
  getMovieList:function(){
    wx.showLoading({
      title: '加载中...'
    })
    wx.cloud.callFunction({
      name: 'movielist',
      data: {
        start: this.data.movieList.length,
        count: 10
      }
    }).then(res => {
      this.setData({
        movieList: this.data.movieList.concat(JSON.parse(res.result).subjects)
      })
      wx.hideLoading()
    }).catch(err => {
      console.log(err)
      wx.hideLoading()
    })
  },
  gotoComment:function(e){
    wx.navigateTo({
      url: `../comment/comment?id=${e.target.dataset.id}`
    })
  },
  /**
   * 生命周期函数--监听页面加载
   */
  onLoad: function (options) {
    this.getMovieList()
  },

  /**
   * 生命周期函数--监听页面初次渲染完成
   */
  onReady: function () {

  },

  /**
   * 生命周期函数--监听页面显示
   */
  onShow: function () {

  },

  /**
   * 生命周期函数--监听页面隐藏
   */
  onHide: function () {

  },

  /**
   * 生命周期函数--监听页面卸载
   */
  onUnload: function () {

  },

  /**
   * 页面相关事件处理函数--监听用户下拉动作
   */
  onPullDownRefresh: function () {

  },

  /**
   * 页面上拉触底事件的处理函数
   */
  onReachBottom: function () {
    this.getMovieList()
  },

  /**
   * 用户点击右上角分享
   */
  onShareAppMessage: function () {

  }
})

修改movie.wxml

<view class="movie" wx:for="{{movieList}}" wx:key="{{index}}">
  <image class="movie-img" src="{{item.images.small}}"></image>
  <view class="movie-info">
    <view class="movie-title">{{item.title}}</view>
    <view>观众评分: 
         <text class="movie-score">{{item.rating.average}}</text>
    </view>
    <view>主演:
      <text wx:for="{{item.casts}}">{{item.name}} </text> 
    </view>
    <view>
      年份: {{item.year}}
    </view>
    <view>
      <button class="movie-comment" data-id="{{item.id}}" bindtap="gotoComment">评价</button>
    </view>
  </view>
</view>

修改movie.wxss

.movie{
  height: 300rpx;
  display: flex;
  padding: 10px;
  border-bottom: 1px solid #ccc
}
.movie-img{
  width: 200rpx;
  height: 100%;
}
.movie-info{
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  margin-left: 10rpx;
}
.movie-title{
  color:#666;
  font-size: 40rpx;
  font-weight: bolder
}
.movie-score{
 color: #faaf00
}
.movie-comment{
  height: 60rpx;
  background-color: #E54847;
  color: #fff;
  font-size: 26rpx;
}

相关文章

  • 电影项目——电影列表

    安装request-promise 效果 新建云函数 修改 index.js 右键创建并部署 修改movie....

  • 电影列表

    看完之后还回味的 真人 励志电影 Inspirational film 肖申克的救赎 The Shawshank ...

  • Vue.js 仿豆瓣电影DEMO 学习笔记一

    豆瓣电影的首页效果 豆瓣电影的列表页面 豆瓣电影的电影内页面效果 参照以上的三个页面,做出豆瓣电影的首页,列表页面...

  • 推荐电影列表

    推荐一些被忽视的电影 1 《故事中的故事》 诺贝尔文学奖级 《超体》 2《HELLO,树先生》 奥斯...

  • 豆瓣电影列表

    main.dart app.dart 网络请求 model movie 主页 row

  • 电影项目——电影详情

    效果 添加云函数 comment.js comment.json comment.wxml comment.wxss

  • Vue2.0 豆瓣电影项目实例

    vue-movie vue2.0 豆瓣电影项目实例,包含三个功能模块(首页列表、搜索列表、详情页) ,适合刚入门学...

  • Flutter(九)豆瓣电影列表

    前言二:学习完列表渲染后,我打算做一个综合一点的练习小项目:豆瓣Top电影排行列表; 这个练习小项目主要是为了锻炼...

  • 电影列表页面总结

    写一个类似于用手机看电影的app首页的电影列表项 1.写个基本的html样式 注意:要添加 表示满屏,防止页面左右...

  • 好电影收藏列表

    【感动无数人的9部电影】 1、《假如爱有天意》 2、《婚纱》 3、《比悲伤更悲伤的故事》 4、《我脑中的橡皮擦》 ...

网友评论

      本文标题:电影项目——电影列表

      本文链接:https://www.haomeiwen.com/subject/jjniectx.html