Replies: 1 comment 5 replies
-
你打印 |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
我看官网有这段介绍
我们这边接口是有时间戳以及签名的, 所以每次请求应该都会生成一个新 key , 所以不会触发缓存。 只能自定义缓存key , 然后看文档可以这么写
感觉这样太不够优雅了, 很多代码都是直接 await出去了 比如:
然后还可以这样
我感觉这种方式比较适合我,把签名和时间戳 删除, 然后根据 请求方法(method)、请求地址(url)、请求头参数(headers)、url 参数(params)、请求体参数(requestBody)组合作为唯一标识。 但是我打印this.context, 并拿不到一些请求信息, 比如请求url 请求参数 , 没有这些信息 我怎么给请求方法 标识一个唯一的key呢?
Beta Was this translation helpful? Give feedback.
All reactions