首页 > 解决方案 > 使用 i18next 将变量替换为 ReactNode 元素

问题描述

我有一个带有以下翻译的翻译 json 文件:

"pageNotFound": {
  "description": "The page could not be found. Click {{link}} to return to the home page"
},

我想要替换的链接变量ReactRouter <Link>

我的render方法中有以下代码,它输出下图。

public render() {

  const { t } = this.props;
  const message = t('pageNotFound.description', { link: <Link to="/">here</Link> });

  return (
    <div className="body-content">
      <div>
        {message}
      </div>
    </div>
  );
}

翻译空

我玩过这个<Trans>组件,我认为这可能是一种方式,但似乎你必须输入包括 <> 标签在内的全文,对于我的用例来说,这不是我想要的,因为我希望所有文本都在如果可能的话,翻译 json。

欢迎任何建议

标签: javascriptreactjstypescriptinternationalizationi18next

解决方案


您应该Trans为此使用组件。

"pageNotFound": {
  "description": "The page could not be found. Click <0>here</0> to return to the home page"
},
public render() {
  const { t } = this.props;

  return (
    <div className="body-content">
      <div>
        <Trans
          t={t}
          i18nKey="pageNotFound.description"
          components={[
            <Link key={0} to="/">
              here
            </Link>,
          ]}
        />
      </div>
    </div>
  );
}

推荐阅读