mockjs可以这样使用吗?import Mock from 'mockjs';
Mock.mock('/data', { data: {
first: '@FIRST',
middle: '@FIRST',
last: '@LAST', full: '@first @middle @last'
}
});
fetch('/data');没有拦截到$.ajax({url:'/data', dataType:'json'})
.done(function (data, status, xhr) { console.log(JSON.stringify(data, null, 4));
});后来使用ajax可以获取数据,可能是没有支持fetch吧
1 回答
波斯汪
TA贡献1811条经验 获得超4个赞
$.ajax({url:'/data', dataType:'json'})
.done(function (data, status, xhr) {
console.log(JSON.stringify(data, null, 4));
});
后来使用ajax可以获取数据,可能是没有支持fetch吧
添加回答
举报
0/150
提交
取消