上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 112 下一页
摘要: request.js import axios from 'axios' export function request(config, success, failure) { const instance = axios.create({ baseURL: 'http://123.207.32.3 阅读全文
posted @ 2021-07-15 19:22 thomas_blog 阅读(39) 评论(0) 推荐(0) 编辑
摘要: const instance = axios.create({ baseURL: 'http://123.207.32.32:8000', timeout: 1000, }); instance({ method: 'get', url: '/home/data', params: { type: 阅读全文
posted @ 2021-07-15 18:48 thomas_blog 阅读(198) 评论(0) 推荐(0) 编辑
摘要: // 全局配置 axios.defaults.baseURL = 'http://123.207.32.32:8000' axios.defaults.timeout = 500 axios({ method: 'get', url: '/home/data', params: { type: 's 阅读全文
posted @ 2021-07-15 18:12 thomas_blog 阅读(134) 评论(0) 推荐(0) 编辑
摘要: axios.all([{ method: 'get', url: 'http://123.207.32.32:8000/home/data', params: { type: 'sell', page: 1 } }, { method: 'get', url: 'http://123.207.32. 阅读全文
posted @ 2021-07-15 17:34 thomas_blog 阅读(151) 评论(0) 推荐(0) 编辑
摘要: 安装 cnpm install axios 使用 import axios from 'axios' axios({ method: 'get', url: 'http://123.207.32.32:8000/home/multidata' }).then(res => { console.log 阅读全文
posted @ 2021-07-15 16:58 thomas_blog 阅读(81) 评论(0) 推荐(0) 编辑
摘要: 不同于mutations,actions可以处理异步操作 index.js import Vue from 'vue' import Vuex from 'vuex' Vue.use(Vuex) const store = new Vuex.Store({ state: { name: 'furon 阅读全文
posted @ 2021-07-14 19:56 thomas_blog 阅读(562) 评论(0) 推荐(0) 编辑
摘要: <p>square: {{$store.getters.squareCount}}</p> index.js import Vue from 'vue' import Vuex from 'vuex' Vue.use(Vuex) const store = new Vuex.Store({ stat 阅读全文
posted @ 2021-07-14 19:03 thomas_blog 阅读(27) 评论(0) 推荐(0) 编辑
摘要: index.js import Vue from 'vue' import Vuex from 'vuex' Vue.use(Vuex) const store = new Vuex.Store({ state: { count: 100 }, mutations: { countAdd(state 阅读全文
posted @ 2021-07-14 11:38 thomas_blog 阅读(76) 评论(0) 推荐(0) 编辑
摘要: 下载源码编译 谷歌浏览器加载 使用 阅读全文
posted @ 2021-07-14 11:18 thomas_blog 阅读(63) 评论(0) 推荐(0) 编辑
摘要: index.js import Vue from 'vue' import Vuex from 'vuex' Vue.use(Vuex) const store = new Vuex.Store({ state: { count: 100 }, mutations: { }, actions: { 阅读全文
posted @ 2021-07-14 10:28 thomas_blog 阅读(30) 评论(0) 推荐(0) 编辑
上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 112 下一页