fix: request response 问题

This commit is contained in:
winixt 2022-01-13 19:18:53 +08:00
parent f857af479a
commit 31b2ca5b11

View File

@ -2,7 +2,7 @@ import { isFunction, isObject, isString } from './helpers';
export default async ({ response, responseDataAdaptor }, next) => {
// 如果 data 是 blob 并且 content-type 是 application/json自动进行数据处理
if (response.data instanceof Blob && response.headers['content-type'].startsWith('application/json') && response.data.type === 'application/json') {
if (response && response.data instanceof Blob && response.headers['content-type'].startsWith('application/json') && response.data.type === 'application/json') {
const rawData = response.data;
try {
response.data = JSON.parse(await response.data.text());