使用superagent缓存时如何强制更新?

时间:2016-10-12 18:45:28

标签: caching superagent

我正在使用superagent-cache和superagent。

对于我的大部分要求,我都是这样说的:

import superagentCache from 'superagent';
const superagent = superagentCache();

superagent正在按预期使用缓存。

对于某些请求,我想使用superagent而不是缓存。

import superagent from "superagent";

但即使是那些请求,superagent仍继续使用缓存的响应。知道为什么会这样吗?

1 个答案:

答案 0 :(得分:0)

superagent-cache补丁现有的superagent。所以,原来的superagent是不可能的。

要避免缓存或强制AJAX请求,请在superagent-cache上使用forceUpdate参数。