This commit is contained in:
wanchun 2022-01-14 16:16:04 +08:00
commit f322380576
3 changed files with 18 additions and 6 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@fesjs/plugin-request",
"version": "2.0.8",
"version": "2.0.10",
"description": "@fesjs/plugin-request",
"main": "lib/index.js",
"files": [

View File

@ -1,6 +1,15 @@
import { isFunction, isObject, isString } from './helpers';
export default async ({ response, responseDataAdaptor }, next) => {
// 如果 data 是 blob 并且 content-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());
} catch {
response.data = rawData;
}
}
if (isFunction(responseDataAdaptor) && response && (isObject(response.data) || isString(response.data))) {
response.data = responseDataAdaptor(response.data);
}

View File

@ -65,16 +65,19 @@ export default {
};
const post = (id) => {
request('/get/api', { id }, {
request('/api', { id }, {
responseType: 'blob'
}).then((data) => {
console.log(data);
});
};
get(1);
get(2);
get(3);
// get(2);
// get(3);
post(1);
post(2);
// post(1);
// post(2);
post(3);