模拟浏览器在位置更改时的滚动恢复。应用应该只渲染一个这样的组件,就在 Scripts 组件之前。
import { ScrollRestoration } from "react-router";export default function Root() { return ( <html> <body> <ScrollRestoration /> <Scripts /> </body> </html> );} Copy
import { ScrollRestoration } from "react-router";export default function Root() { return ( <html> <body> <ScrollRestoration /> <Scripts /> </body> </html> );}
此组件渲染一个内联 <script> 以防止滚动闪烁。nonce 属性将被传递到 script 标签,以允许 CSP nonce 的使用。
<script>
nonce
<ScrollRestoration nonce={cspNonce} /> Copy
<ScrollRestoration nonce={cspNonce} />
模拟浏览器在位置更改时的滚动恢复。应用应该只渲染一个这样的组件,就在 Scripts 组件之前。
此组件渲染一个内联
<script>
以防止滚动闪烁。nonce
属性将被传递到 script 标签,以允许 CSP nonce 的使用。