Merge pull request #78 from WeBankFinTech/fix_request_key

Fix request key
This commit is contained in:
aring 2021-11-18 14:10:23 +08:00 committed by GitHub
commit 4092c46b12
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 44 additions and 15 deletions

View File

@ -5,11 +5,20 @@ import { isURLSearchParams } from './helpers';
* 一个请求同时包含 data | params 参数的设计本身不合理 * 一个请求同时包含 data | params 参数的设计本身不合理
* 不对这种情况进行兼容 * 不对这种情况进行兼容
*/ */
export default async function genRequestKey(ctx, next) {
const { url, data, method } = ctx.config; const getQueryString = (data) => {
if (isURLSearchParams(data)) { if (isURLSearchParams(data)) {
ctx.key = `${url}${data.toString()}${method}`; return data.toString();
} }
ctx.key = `${url}${JSON.stringify(data)}${method}`; return data ? JSON.stringify(data) : '';
};
export default async function genRequestKey(ctx, next) {
const {
url, data, params, method
} = ctx.config;
ctx.key = `${url}${getQueryString(data)}${getQueryString(params)}${method}`;
await next(); await next();
} }

View File

@ -46,17 +46,37 @@ export default {
// }).then((res) => { // }).then((res) => {
// console.log(res); // console.log(res);
// }); // });
request('/api', null, { // request('/api', null, {
mergeRequest: true // mergeRequest: true
}).then((res) => { // }).then((res) => {
console.log(res); // console.log(res);
}); // });
request('/api', null, { // request('/api', null, {
throttle: 3000, // throttle: 3000,
cache: true // cache: true
}).then((res) => { // }).then((res) => {
console.log(res); // console.log(res);
}); // });
const get = (id) => {
request('/get/api', { id }, {
method: 'get'
});
};
const post = (id) => {
request('/get/api', { id }, {
});
};
get(1);
get(2);
get(3);
post(1);
post(2);
post(3);
// setTimeout(() => { // setTimeout(() => {
// request('/api', null, { // request('/api', null, {