UNPKG

@tarojs/plugin-http

Version:

Taro 小程序端支持使用 web 请求 的插件

12 lines (11 loc) 463 B
import type { IPluginContext } from '@tarojs/service'; export interface IOptions { /** 支持 document.cookie 和 http 设置 cookie (默认false) */ enableCookie?: boolean; /** 禁用掉 FormData 全局对象 (默认true禁用) */ disabledFormData?: boolean; /** 禁用掉 Blob 全局对象 (默认true禁用) */ disabledBlob?: boolean; } declare const _default: (ctx: IPluginContext, options: IOptions) => void; export default _default;