呵呵哒我就
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'