在nuxt.config.js里面写入:
modules: [ // Doc: https://axios.nuxtjs.org/usage '@nuxtjs/axios' ],
axios: { retry: { retries: 3 }, //开发模式下开启debug debug: process.env._ENV == "production" ? false : true, //设置不同环境的请求地址 baseURL: process.env._ENV == "production" ? "http://localhost:8000/" : "http://localhost:8000/", withCredentials: true, },
使用方法:
async asyncData(context) { return context.$axios.get("/category").then(res => { console.log(res); return { list: res }; }); },
发表评论
侧栏公告
寄语
譬如朝露博客是一个分享前端知识的网站,联系方式11523518。
热评文章
标签列表
热门文章
友情链接