首先安装两个插件
npm install @nuxtjs/axios @nuxtjs/proxy --save
在 nuxt.config.js 配置文件中添加对应的模块,并设置代理
proxy: { '/api': { target: 'http://localhost:5000', changeOrigin: true, pathRewrite: { '^/api': '' } } }, /* ** Axios module configuration ** See https://axios.nuxtjs.org/options */ axios: { proxy: true, // 表示开启代理 prefix: '/api', // 表示给请求url加个前缀 /api credentials: true // 表示跨域请求时是否需要使用凭证 },
发表评论
侧栏公告
寄语
譬如朝露博客是一个分享前端知识的网站,联系方式11523518。
热评文章
标签列表
热门文章
友情链接