prefetch 和 preload 只能对静态资源使用吧?
有些 get 请求可以接受一点点的延迟,比如在我鼠标移到“全部”这个话题按钮上,就可以先发起一个 getList 的请求,实际用的时候看看时间差是否可以接受。
看到一个问答: https://stackoverflow.com/questions/38593535/can-link-prefetch-be-used-to-cache-a-json-api-response-for-a-later-xhr-request
<link rel="preload" href="/api/config" as="fetch">这种方式似乎可以?
<link rel="preload" href="/api/config" as="fetch">