提交 2277fbe2 作者: 方治民

fix: 修复小程序下请求 header 丢失问题

上级 89806e67
...@@ -19,7 +19,7 @@ axios.defaults.adapter = function (config: InternalAxiosRequestConfig): AxiosPro ...@@ -19,7 +19,7 @@ axios.defaults.adapter = function (config: InternalAxiosRequestConfig): AxiosPro
method: config.method.toUpperCase() as RequestEnum, method: config.method.toUpperCase() as RequestEnum,
url: config.url, url: config.url,
data: config.data || config.params, data: config.data || config.params,
header: config.headers, header: { ...config.headers },
responseType: config.responseType, responseType: config.responseType,
timeout: config.timeout, timeout: config.timeout,
dataType: 'json', dataType: 'json',
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论