我在HTTP2响应中发送了一个Link
预加载头。像这样:
Link: </assets/script/main.js?h=1795387974>; rel=preload; as=script, </assets/font/sourcesanspro_regular.woff2>; rel=preload; as=font
脚本,样式和图像不会导致任何问题 - 它们会被推送和使用。但是字体被推送然后再次请求/获取并且Chromium控制台抱怨:
资源https://example.com/assets/font/sourcesanspro_regular.woff2是使用链接预加载预加载的,但是在窗口加载事件的几秒钟内未使用。请确保它没有预先加载。
以下是上述字体的响应标题。
推:
accept-ranges:bytes
cache-control:max-age=5184000, public
content-length:16892
content-type:application/octet-stream
date:Mon, 25 Sep 2017 09:22:05 GMT
last-modified:Mon, 18 Sep 2017 14:33:31 GMT
pragma:public
status:200
x-content-type-options:nosniff
x-frame-options:SAMEORIGIN
x-http2-push:pushed
x-xss-protection:1; mode=block
推送后请求:
accept-ranges:bytes
cache-control:max-age=5184000, public
content-length:16892
content-type:application/octet-stream
date:Mon, 25 Sep 2017 09:22:05 GMT
last-modified:Mon, 18 Sep 2017 14:33:31 GMT
pragma:public
status:200
x-content-type-options:nosniff
x-frame-options:SAMEORIGIN
x-xss-protection:1; mode=block
我做错了什么?
答案 0 :(得分:2)
您必须为字体添加crossorigin:
Link: </assets/font/sourcesanspro_regular.woff2>; rel=preload; as=font crossorigin
有关详细信息,请参阅此处:https://github.com/w3c/preload/issues/32 在这里:https://www.smashingmagazine.com/2016/02/preload-what-is-it-good-for/。
值得一提的是:您必须添加一个crossorigin属性 在获取字体时,因为它们是使用匿名模式CORS获取的。 是的,即使您的字体与页面的原点相同。遗憾。