美文网首页
基于vue-cli的vue项目之axios的使用1--准备工作

基于vue-cli的vue项目之axios的使用1--准备工作

作者: sirai | 来源:发表于2018-05-07 15:48 被阅读8次


1.npm添加axios:  
npm  install  axios  
2.在main.js导入:  
import axios from 'axios'  
3.将其添加在原型链上:  
Vue.prototype.$http=axios  
4.在config/index.js修改dev,(开发环境下解决跨域问题)  
dev: {  
        env: require('./dev.env'),  
        port: 8008,  
        autoOpenBrowser: false,  
        assetsSubDirectory: 'static',  
        assetsPublicPath: '/',  
        proxyTable: {  
            '/ajaxurl': {  
                target: 'https://www.xxxxxxxxx.con/',  
                changeOrigin: true,  
                pathRewrite: {  
                    '^/ajaxurl': '/'  
                }  
            }  
  
        }  
      
    }  
注意:1.修改过后需要重启下项目  
      2.在target处最好只填写域名  

相关文章

网友评论

      本文标题:基于vue-cli的vue项目之axios的使用1--准备工作

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