可修改式基础地址
config.js
~~~
var config={
base_api_url:"http://douban.uieee.com/v2/"
}
export {
config
}
~~~
Promise封装HTTP
utils/http.js
~~~
import { config } from "../config";
class HTTP {
request({url,method="GET",data={}}) {
const promise = new Promise((resolve, reject) => {
wx.request({
url: config.base_api_url + url,
data,
method,
header: {
'Content-Type': 'json',
},
success: (res=>{
const statusCode = res.statusCode.toString();
if (statusCode.startsWith("2")) {
resolve(res.data);
} else {
this._show_error();
}
}),
fail: (err=> {
reject(err);
this._show_error();
})
})
})
return promise;
}
_show_error() {
wx.showToast({
title: '网络错误',
icon: 'none'
})
}
}
export {
HTTP
};
~~~
继承类MovieModel再次封装
models/movie.js
~~~
import {HTTP} from "../utils/http";
class MovieModel extends HTTP{
getInTheaters(){
return this.request({
url:"in_theaters"
})
}
getTop250(){
return this.request({
url:"top250"
})
}
getComingSoon(){
return this.request({
url:"coming_soon"
})
}
}
export {MovieModel};
~~~
页面调用HTTP
Promise.all().then(res=>{}),res会生成一个数组,需要用数组装载
~~~
import {MovieModel} from "../../models/movie-p";
const movieModel = new MovieModel();
Page({
onLoad(){
const inTheaters = movieModel.getInTheaters()
const top250 = movieModel.getTop250();
const comingSoon = movieModel.getComingSoon();
Promise.all([inTheaters,top250,comingSoon]).then(res=>{
let [inTheaters,top250,comingSoon] = res;
console.log(inTheaters);
console.log(top250);
console.log(comingSoon);
})
}
})
~~~
- 小程序环境配置
- 1.生命周期
- 页面生命周期
- 组件生命周期
- 2.小程序组件
- 点击事件bindtap|catchtap
- swiper轮播
- wx:for循环
- 播放音乐
- map
- tabBar底部页面切换
- scroll-view可滚动视图区域。
- web-view装载显示网页
- priviewImage新页面预览照片
- chooseImage本地选择照片
- onReachBottom上拉刷新,加载等待条
- setStorage缓存
- showToast弹出提示框
- slot父组件wxml传递到子组件
- form表单
- 小程序.wxs,方法在.wxml调用
- 3.组件前身:模板、模板传参
- 4.自定义组件、组件传参|传wxss|wxml代码
- 5.小程序正则
- 6.小程序页面跳转
- 7.open-type 微信开放功能
- 实例
- 1.第一个实例 hello world
- 2.第二个实例豆瓣电影数据渲染
- 豆瓣1.0基本版
- 豆瓣2.0升级版
- 豆瓣3.0豪华版
- 3.第三个实例多接口在同一页面使用
- HTTP封装
- 基础报错提示,类式封装
- Promise回调,类式封装