如果你的项目中需要模拟下json数据,来看下访问速度,那就参照这个试试吧,首先创建test.josn,放在pulic目录下,见下图
定义js
// 文件 prodOrder.js
export function test(data) {
return request({
url: 'http://localhost:8080/../test.json',
method: 'get',
data
});
}
页面引用
import {
test
} from '@/api/produce/prodOrder';
调用
test().then((res) => {
console.log(res)
})
结束语:
希望这篇文章能帮助到大家,如有不对之处,还请指正。愿我们一起成长。