mpvue+vuex搭建小程序详细教程(完整步骤)

构成
1、采用mpvue 官方脚手架搭建项目底层结构
2、采用Fly.js 作为http请求库
3、引入mpvue-router-patach,以便在mpvue小程序中能使用vue-router的写法

目录结构

├── src // 我们的项目的源码编写文件 │ ├── components // 组件目录 │ ├── common //静态资源 │ │ └── font // iconfont图标 │ │ └── img // 图片 │ │ └── js // js │ │ │└── mixins.js // js │ │ │└── tips.js // js │ │ │└── utils.js // js │ │ └── scss // scss样式 │ │ │└── base.scss // 自定义样式 │ │ │└── icon.scss // iconfont图标 │ │ │└── index.scss // 基础汇总 │ │ │└── mixin.scss // 混合等工具样式 │ │ │└── reset.scss // 初始化样式 │ │ │└── variable.scss // 全局主题色样式 │ ├── http //http请求配置文件 │ │ └── api // 接口调用文件 │ │ └── config //fly 配置文件 │ ├── pages //项目页面目录 │ ├── components //项目复用组件目录 │ ├── store //状态管理 vuex配置目录 │ │ └── actions.js //actions异步修改状态 │ │ └── getters.js //getters计算过滤操作 │ │ └── mutation-types.js //mutations 类型 │ │ └── mutations.js //修改状态 │ │ └── index.js //我们组装模块并导出 store 的地方 │ │ └── state.js //数据源定义 │ ├── untils //工具函数目录 │ │ └── index.js │ ├── App.vue // APP入口文件 │ ├── main.js // 主配置文件 │ ├── config.js // host等配置

快速创建一个mpvue项目

# 全局安装 vue-cli $ npm install -g vue-cli # 创建一个基于 mpvue-quickstart 模板的新项目,记得选择安装vuex $ vue init mpvue/mpvue-quickstart mpvue-demo # 安装fly $ npm i flyio --save # 安装依赖 $ cd mpvue-demo $ npm i # 启动构建 $ npm run dev

配置fly

1、配置公共设置

src/http/config.js

/* fly配置文件 by:David 2018.6.14 */ //引入 fly var Fly = require("flyio/dist/npm/wx") var fly = new Fly; import config from '@/config' //配置请求基地址 // //定义公共headers // fly.config.headers={xx:5,bb:6,dd:7} // //设置超时 fly.config.timeout = 20000; // //设置请求基地址 fly.config.baseURL = config.host //添加请求拦截器 fly.interceptors.request.use((request) => { //给所有请求添加自定义header request.headers["X-Tag"] = "flyio"; //打印出请求体 // console.log(request.body) //终止请求 //var err=new Error("xxx") //err.request=request //return Promise.reject(new Error("")) //可以显式返回request, 也可以不返回,没有返回值时拦截器中默认返回request return request; }) //添加响应拦截器,响应拦截器会在then/catch处理之前执行 fly.interceptors.response.use( (response) => { //只将请求结果的data字段返回 return response.data }, (err) => { //发生网络错误后会走到这里 //return Promise.resolve("ssss") } ) // Vue.prototype.$http=fly //将fly实例挂在vue原型上 export default fly

2、配置个性设置

src/http/api.js

import fly from './config' import qs from 'qs' import config from '../config' const host = config.host; const appKey = config.appKey; const appid = config.appid; /** * 接口模版====post * * export const test = params => {return fly.post(`${root}/xx/xx`, qs.stringify(params))}; * * 接口模版====get * * export const test1 = function(){return fly.get(`${root}/api/getNewsList`)} * * * 用法: * 在 页面用引入 test * import {test} from '../../http/api.js' * * test(params).then(res=>{ console.log(res) }) */ // 通用的get请求 export const get = (params) => { return fly.get(`${host}${params.url}`, qs.stringify(params.data)) }; // 通用的post请求 export const post = (params) => { return fly.post(`${host}${params.url}`, qs.stringify(params.data)) }; // 封装的登录请求,根据后台接收方式选择是否加qs.stringify export const login = params => { return fly.post('/login', params) };

host配置

config.js

const host = 'http://xxx.xxx'; const appid = ''; const appKey = ''; const config = { host, appid, appKey, } export default config

配置vuex
1、目录结构

│ ├── store //状态管理 vuex配置目录 │ │ └── actions.js //actions异步修改状态 │ │ └── getters.js //getters计算过滤操作 │ │ └── mutation-types.js //mutations 类型 │ │ └── mutations.js //修改状态 │ │ └── index.js //我们组装模块并导出 store 的地方 │ │ └── state.js //数据源定义

2、main.js中引入store, 并绑定到Vue构造函数的原型上,这样在每个vue的组件都可以通过this.$store访问store对象。

import store from './store/index' Vue.prototype.$store=store;

3、定义初始变量store/state.js

const state={ openId: '', } export default state

4、mutation类型

方便检测错误和书写,一般写方法

export const SET_OPEN_ID = 'SET_OPEN_ID'

5、store/mutations.js

写处理方法

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/e3c7041e555f77bfdb55ddf865468342.html