vue+node

作者: 风吹过的空气 | 来源:发表于2017-07-27 14:35 被阅读7次

vue-cli脚手架里面的config/index.js里面有一个proxyTable,将
proxyTable: {}
变成

proxyTable: {
  '/api': {
    target: 'localhost:8088/',
    changeOrigin: true,
    pathRewrite: {
      '^/api': '/api'
    }
  }
}

然后请求方式变成:

export default {
   login () {
    this.$http.get('api/getAccount')
      .then(res => console.log(res))
      .catch(rej => console.log(rej))
  }
}

后端:

router.get('/api/getAccount', (req, res) => {
  
});

相关文章

网友评论

      本文标题:vue+node

      本文链接:https://www.haomeiwen.com/subject/lvqzcxtx.html