javascript 代理nuxt

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript 代理nuxt相关的知识,希望对你有一定的参考价值。

modules: [
  ‘@nuxtjs/proxy’,
],

/* ‘/backend’ will be replaced by ‘http://localhost:18080’ */
proxy: {
  ‘/backend’: {
    target: ‘http://localhost:18080',
    pathRewrite: {
    ‘^/backend’: ‘/’,
    },
  },
},
/* Real call http://localhost:18080/claim */
async saveClaim(claim) {
  let response = {};
  response = await this.$axios.post('/backend/claim', claim);
  $log(response);
},

以上是关于javascript 代理nuxt的主要内容,如果未能解决你的问题,请参考以下文章

nuxt.js设置代理接口

nuxt axios代理

nuxt.js部署和nginx反向代理配置

如何使用 Nuxt 为不同的 API 服务器设置代理?

nuxt项目部署后的nginx代理配置

nuxt项目部署后的nginx代理配置