1、在api文件夹,新建个ajax.js文件(命名看个人习惯,如果没有该文件夹,可以新建一个),这个文件用于向服务器发请求
import axios from "axios";
import nprogress from "nprogress";
import 'nprogress/nprogress.css'
const requests = axios.create({
baseURL:'/api',
timeout:5000
});
requests.interceptors.request.use((config)=>{
nprogress.start()
return config;
});
requests.interceptors.response.use( (response) =>{
nprogress.done();
return response.data;
}, (error)=> {
return Promise.reject(error);
})
export default requests;
2、在api文件夹,新建个index.js文件(命名看个人习惯,如果没有该文件夹,可以新建一个),这个文件对api接口进行统一的管理,index.js文件主要用于数写请求接口,并对外暴露
import requests from "./ajax";
export const reqCategoryList = ()=> requests.get('/product/getBaseCategoryList')
3、在store文件夹,新建个index.js文件(命名看个人习惯,如果没有该文件夹,可以新建一个),采用模块化的
import {reqCategoryList} from '@/api'
const state = {
categoryList: [],
}
const actions = {
async categoryList({commit}) {
let result = await reqCategoryList();
if (result.code == 200) {
commit('CATEGORYLIST', result.data)
}
},
}
const mutations = {
CATEGORYLIST(state, categoryList) {
state.categoryList = categoryList
},
}
const getters = {}
export default ({
state,
actions,
mutations,
getters,
})
4、在相应的组件挂载完毕后向服务器发起请求,此时vuex中已经存入页面的数据
mounted(){
this.$store.dispatch("categoryList");
}
5、在相应的组件中,将数据从vuex中提取出来使用
import { mapState } from "vuex";
computed: {
...mapState({
categoryList: (state) => state.home.categoryList,
})
}
6、此时数据都在categoryList 中,使用即可,如:
<div class="item bo" v-for="(c1, index) in categoryList" :key="c1.categoryId"></div>
注:在写完每一步后都要看看数据到底拿到了没有,如果一直写最后出错了不好寻找错误
|