美文网首页
小坑集锦

小坑集锦

作者: 点_ba7a | 来源:发表于2017-08-29 12:03 被阅读0次

    呵呵哒我就

     axios报错系列(ajax $http)


    1.报错 Cannot read property ‘protocol’ of undefined

    axios 不能通过Vue.use(axios)的方式引入, 如果想在所有组件中直接使用axios, 可以这样设置(main.js)

    import axios from 'axios';

    Vue.prototype.$http = axios;

    2. 跨域错误

    在config index.js 设置如下代理 

    记得重启一次 npm run dev

    proxyTable: {'/list': {target:'http://api.xxxxxxxx.com',pathRewrite: {'^/list':'/list'}  }

    使用遮罩层的时候 还是可以滚动 怎么办?

    同时要定住body

    document.body.style.position='fixed'

    document.body.style.top='0'

    相关文章

      网友评论

          本文标题:小坑集锦

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