2024-10-12 01:40:49 +00:00

22 lines
746 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { mockGroupV1 } from '@/mock/v1';
import { uniappMockResponse, uniappRequestAdapter } from '@alova/adapter-uniapp';
import { createAlovaMockAdapter } from '@alova/mock';
/**
* 模拟数据请求适配器
* @link https://alova.js.org/zh-CN/extension/alova-mock
*/
export const mockAdapter = createAlovaMockAdapter(mockGroupV1, {
// 指定uniapp请求适配器后未匹配模拟接口的请求将使用这个适配器发送请求
httpAdapter: uniappRequestAdapter,
// mock接口响应延迟单位毫秒
delay: 1500,
// 是否打印mock接口请求信息
// mockRequestLogger: false,
// 模拟响应适配器指定后响应数据将转换为uniapp兼容的数据格式
onMockResponse: uniappMockResponse,
});