美文网首页
Mock.js 模拟接口请求

Mock.js 模拟接口请求

作者: wlianfu | 来源:发表于2018-12-10 11:17 被阅读19次
    // 模拟接口请求返回数据
          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;
            });
    

    相关文章

      网友评论

          本文标题:Mock.js 模拟接口请求

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