Mock.js 模拟接口请求

2018-12-10  本文已影响19人  wlianfu
// 模拟接口请求返回数据
      Mock.mock('http://test/mock', {
        "data|10": [{
          'id|+1': 1800,
          'name': '@cname',
          'value': '@integer(2000, 90000)',
        }]
      });
      axios.get('http://test/mock', null)
        .then(res => {
          if(isEmpty(res) || isEmpty(res.data) || isEmpty(res.data.data)) {
            this.list = [];
            this.isEmpty = true;
            return;
          }
          this.list = res.data.data;
          // console.log('list: ', this.list);
          this.getOptions();
        }).catch(err => {
          // console.log('error: ', err);
          this.list = [];
          this.isEmpty = true;
        });
上一篇下一篇

猜你喜欢

热点阅读