Blame view

src/mock/mock.js 525 Bytes
cb40959e   liuqimichale   添加mock 数据
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  import Mock from 'mockjs'
  import pdaApi from './pda'
  
  // 修复在使用 MockJS 情况下,设置 withCredentials = true,且未被拦截的跨域请求丢失 Cookies 的问题
  // https://github.com/nuysoft/Mock/issues/300
  Mock.XHR.prototype.proxy_send = Mock.XHR.prototype.send
  Mock.XHR.prototype.send = function () {
    if (this.custom.xhr) {
      this.custom.xhr.withCredentials = this.withCredentials || false
    }
    this.proxy_send(...arguments)
  }
  
  Mock.mock('/article/list', 'get', pdaApi.getList);
  
  export default Mock