Remix handle 函数是一个有用的对外输出的 Route 模块目标,用于暴露特定的数据 match 目标,它们经常在一同运用。

当时 Remix 版别:1.15.0

在哪里可以界说 handle?

在根路由界说

import { /.../ } from "@remix-run/react";
// 根路由 handle 配合页面中 useMatches 获取到 app 数据
export const handle = {
  app: 1
}
export default function App() {
  return (
    <html lang="en">
      // ...
    </html>
  );

在页面 _index 路由中与 useMatch 一同

handle 与 useMatch 一同运用, useMatch 回来路由匹配相关的目标:

import type { V2_MetaFunction } from "@remix-run/node";
// hooks
import { useMatches } from "@remix-run/react";
export const meta: V2_MetaFunction = () => {
  return [{ title: "New Remix App" }];
};
// 输出界说 handle 目标
export const handle = {
  test: 1,
}
export default function Index() {
  const match = useMatches()
  console.log(match[1].test) // 在 match 中拜访 match 函数
  return (
    <div>
      <h1>Welcome to Remix</h1>
    </div>
  );
}

match 数组

match 是一个数组, 数组中的目标数据结构

  • data: 当时 loader 函数回来的数据
  • handle: 当时路由界说的 handle 数据
  • id:当时的路由 id
  • params: 当时的参数
  • pathname: 当时的路由途径

match 一般是一个数组,会有两个目标:

  • root.tsx 中的 match 目标
  • 当时路由的 match 目标

运用场景

当路由中需要指定一些特定的数据的时分

  • Remix-118i 中需要指定 handle
export const handle = { i18n: "login" };

i18n 提供给 Remix-i18n 用于依据当时路由匹配。

引用

  • handle
  • remix-i18next