Vue 跨域请求的解决办法

来源:互联网 发布:淘宝信用贷款突然没了 编辑:程序博客网 时间:2024/06/07 00:07

在 config 目录的 index.js 文件中 设置 proxyTable 的值,样式如下

proxyTable: {  '/api':{    target:'http://10.144.26.240:9300',    changeOrigin:true,    pathRewrite: {      '^/api': ''    }  }}
然后再进行请求就OK了

methods: {  reverseMessage: function() {    this.$http.get(this.apiUrl)      .then((response) => {        console.log(response)        this.msg = 'success'      })      .catch(function(response) {        console.log(response)        this.msg = response      })  }}

0 0