preloadModule 让你能够急切地获取你预期会使用的 ESM 模块。
preloadModule("https://example.com/module.js", {as: "script"});参考
🌐 Reference
preloadModule(href, options)
要预加载 ESM 模块,请从 react-dom 调用 preloadModule 函数。
🌐 To preload an ESM module, call the preloadModule function from react-dom.
import { preloadModule } from 'react-dom';
function AppRoot() {
preloadModule("https://example.com/module.js", {as: "script"});
// ...
}preloadModule 函数向浏览器提供一个提示,它应开始下载指定模块,这可以节省时间。
🌐 The preloadModule function provides the browser with a hint that it should start downloading the given module, which can save time.
参数
🌐 Parameters
href:一个字符串。你想下载的模块的 URL。options:一个对象。它包含以下属性:as:一个必需的字符串。它必须是'script'。crossOrigin:一个字符串。要使用的 CORS 策略。它的可能值是anonymous和use-credentials。integrity:一个字符串。模块的加密哈希,用于验证其真实性。nonce:一个字符串。一个加密 nonce,以允许模块 在使用严格的内容安全策略时。
返回
🌐 Returns
preloadModule 不返回任何内容。
注意事项
🌐 Caveats
- 多次使用相同的
href调用preloadModule与一次调用的效果相同。 - 在浏览器中,你可以在任何情况下调用
preloadModule:在渲染组件时,在 Effect 中,在事件处理程序中,等等。 - 在服务端渲染或渲染服务器组件时,
preloadModule仅在你在渲染组件时或在源自组件渲染的异步上下文中调用时才有效。任何其他调用将被忽略。
用法
🌐 Usage
渲染时预加载
🌐 Preloading when rendering
在渲染组件时调用 preloadModule,如果你知道它或它的子组件将使用特定模块。
🌐 Call preloadModule when rendering a component if you know that it or its children will use a specific module.
import { preloadModule } from 'react-dom';
function AppRoot() {
preloadModule("https://example.com/module.js", {as: "script"});
return ...;
}如果你希望浏览器立即开始执行模块(而不仅仅是下载它),请使用 preinitModule。如果你想加载一个不是 ESM 模块的脚本,请使用 preload。
🌐 If you want the browser to start executing the module immediately (rather than just downloading it), use preinitModule instead. If you want to load a script that isn’t an ESM module, use preload.
在事件处理程序中预加载
🌐 Preloading in an event handler
在过渡到需要该模块的页面或状态之前,在事件处理程序中调用 preloadModule。这比在新页面或状态渲染期间调用它更早地启动该过程。
🌐 Call preloadModule in an event handler before transitioning to a page or state where the module will be needed. This gets the process started earlier than if you call it during the rendering of the new page or state.
import { preloadModule } from 'react-dom';
function CallToAction() {
const onClick = () => {
preloadModule("https://example.com/module.js", {as: "script"});
startWizard();
}
return (
<button onClick={onClick}>Start Wizard</button>
);
}