nativeTest.js 1.41 KB
import NativeTestService from './nativeTestService.js'

Page({

  /**
   * 页面的初始数据
   */
  data: {
    text: '哈哈哈哈',
    api: new NativeTestService()
  },

  /**
   * 生命周期函数--监听页面加载
   */
  onLoad: function (options) {
    wx.showLoading({
      title: '加载中',
    })
    let api = new NativeTestService();
    this.setData({
      api:api
    });
    // () => {} 为 微信原生请求中的 complete
    this.data.api.getHomePageList({page: 1, limit: 20}, () => {
      wx.hideLoading();
    }).then(data => {
      // 此处 data 为 response 中的 data.data
      console.log(data);
    }).catch(error => {
      // 此处会抛出响应码非 200 的情况
      console.log(error);
    });
  },

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

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

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

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

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

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

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