vue通过修改config下的index.js解决跨域无效,地址也被更改了

vue通过修改config下的index.js解决跨域无效,并且自动把接口地址改边了
config下的index.js代码如下:

    proxyTable: {      '/api':{
        target: 'http://api.jisuapi.com',
        changeOrigin: true,
        pathRewrite:{          '^/api': ''
        }
      }
    },

axois请求代码如下:

const actions = {
  getList ({commit}, msg){    const start = Math.floor(Math.random() * 100)    if (msg.channel && msg.type && msg.flag) {
      axios.get('/api/news/get?channel='+ msg.channel +'&start='+ start +'&num=10&appkey=272f8fcb40a13a6e')
      .then(res =>{
        commit('GET_NEWSLIT',{
          data: res.data.result.list,
          kind: msg.type
        })        console.log(res.data)
      })
    }
  },

我这里的接口参数是没有问题的,之前用谷歌的插件跨域访问的,数据都每天问题,现在跨域要改成代码的形式

页面报错如下

https://img2.mukewang.com/5c55a8810001147008000228.jpg

人到中年有点甜
浏览 440回答 1
1回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Html5