大家好,我是编程小6,很高兴遇见你,有问题可以及时留言哦。
开发了一款简单的原生的微信小程序之后,觉得使用美团开源的mpvue来开发小程序,这使得不熟悉小程序语法的程序员不用花过多精力去熟悉小程序官方文档,使用vue语法来进行开发。
mpvue 是一个使用 Vue.js 开发小程序的前端框架(美团的开源项目)。框架基于 Vue.js 核心,mpvue 修改了 Vue.js 的 runtime 和 compiler 实现,使其可以运行在小程序环境中,从而为小程序开发引入了整套 Vue.js 开发体验。
gitup地址
博客地址
1 # 全局安装 vue-cli
2 $ npm install --global vue-cli
3
4 # 创建一个基于 mpvue-quickstart 模板的新项目
5 $ vue init mpvue/mpvue-quickstart my-project
6
7 # 安装依赖
8 $ cd my-project
9 $ npm install
10 # 启动构建
11 $ npm run dev
这里我取消了vuex(状态管理)和ESlint(代码检查),因为个人不喜欢检测空格和;的规范,你可以根据你的需求配置。
package.json加入依赖或者npm install flyio
1 var Fly=require("../lib/wx") //wx.js为您下载的源码文件
2 // var Fly=require("flyio/dist/npm/wx") //npm引入方式
3 var fly=new Fly(); //创建fly实例
4
5 //添加拦截器
6 fly.interceptors.request.use((config,promise)=>{
7 //给所有请求添加自定义header
8 config.headers["X-Tag"]="flyio";
9 return config;
10 })
11 //配置请求基地址
12 fly.config.baseURL="https://wendux.github.io/"
13 ...
14
15 Page({
16 //事件处理函数
17 bindViewTap: function() {
18 //调用
19 fly.get("http://10.10.180.81/doris/1/1.0.0/user/login",{xx:6}).then((d)=>{
20 //输出请求数据
21 console.log(d.data)
22 //输出响应头
23 console.log(d.header)
24 }).catch(err=>{
25 console.log(err.status,err.message)
26 })
27 ...
28 })
29 })
httpUtil.js
var Fly=require("../lib/wx") //wx.js为您下载的源码文件
2 // var Fly=require("flyio/dist/npm/wx") //npm引入方式
3 var fly=new Fly(); //创建fly实例
4
5 //添加拦截器
6 fly.interceptors.request.use((config,promise)=>{
7 //给所有请求添加自定义header
8 config.headers["X-Tag"]="flyio";
9 return config;
10 })
11 //配置请求基地址
12 fly.config.baseURL="https://wendux.github.io/"
13 ...
14
15 Page({
16 //事件处理函数
17 bindViewTap: function() {
18 //调用
19 fly.get("http://10.10.180.81/doris/1/1.0.0/user/login",{xx:6}).then((d)=>{
20 //输出请求数据
21 console.log(d.data)
22 //输出响应头
23 console.log(d.header)
24 }).catch(err=>{
25 console.log(err.status,err.message)
26 })
27 ...
28 })
29 })
apiUtil.js
1 /** 2 * Created by yuchen on 2018/4/2. 3 */
4 //封装httpApi
5 import request from './httpUtil'
6 const host = "https://XXX.cn"
7 const api = {
8 // test地址
9 authorList:() => request.get(`${host}/index/list_author_recommend.html`)
10 }
11
12 // export default api
13 export default { //作为组件库(install)
14 install: function(Vue,name="$http") {//自定义名字(vue-resource也使用$http)
15 Object.defineProperty(Vue.prototype, name, { value: api });//将组件库挂载在原型对象上
16 }
17 }
使用微信的页面跳转方法,然后跳转页面使用this.$root.$mp.query获取参数。
下载weui.css放入项目中,import引入css,如:import '../static/weui/weui.css'
1.新增页面需要npm run dev重启一下。
2.小程序里所有的 BOM/DOM 都不能用,也就是说 v-html 指令不能用。
3.暂不支持在组件上使用 Class 与 Style 绑定,需要在组件内部书写。
4.mpvue 可以支持小程序的原生组件,比如: picker,map 等,需要注意的是原生组件上的事件绑定,需要以 vue 的事件绑定语法来绑定,如 bindchange="eventName" 事件,需要写成 @change="eventName"。
5.mpvue 建议使用 v-model.lazy 绑定方式以优化性能,此外 v-model 在老基础库下输入框输入时可能存在光标重设的问题。
6.写页面跳转时候传入动态参数,需要写成:url,如:<navigator url="'../test/main?id='+id hover-class="none""。
7.通过 this.$root.$mp.query 进行获取小程序在 page onLoad 时候传递的 options。通过 this.$root.$mp.appOptions 进行获取小程序在 app onLaunch/onShow 时候传递的 options。
8.使用this.$root.$mp.query获取参数需要在monted中获取,在created中会报Cannot read property 'query' of undefined 。