繁体   English   中英

i18next 插值中的 React 组件显示为 [object Object]

[英]React components in i18next interpolation display as [object Object]

我的 React 应用程序使用next-i18next package。 我想在我的插值中加入一些 React 组件:

import React from 'react';
import { useTranslation } from 'next-i18next';
import { serverSideTranslations } from 'next-i18next/serverSideTranslations';

export default function Review({ text, author }) {
  const { t } = useTranslation('reviews');

  return (
    <article>
      <p>{text}</p>
      <footer>
        {t('footer', { author: <a href={author.url}>{author.name}</a> })}
      </footer>
    </article>
  );
}

export const getStaticProps = async ({ locale }) => ({
  props: {
    ...await serverSideTranslations(locale, ['reviews']),
  }
});

reviews.json

{
    "footer": "By {{author}}, all rights reserved"
}

尝试使用 JSX 元素填充插值无法按预期工作。 我得到的结果是:

作者:[object Object],保留所有权利

我还尝试使用By {{- author}}, all rights reserved ,但结果相同。

我可以使用 JSX 元素来填充我的插值吗?

您不能使用t function 来注入jsx

为此有一个特殊的Trans组件,您应该使用它。

import React from 'react';
import { useTranslation, Trans } from 'next-i18next';
import { serverSideTranslations } from 'next-i18next/serverSideTranslations';

export default function Review({ text, author }) {
  const { t } = useTranslation('reviews');

  return (
    <article>
      <p>{text}</p>
      <footer>
        <Trans
          i18nKey="footer"
          t={t}
          values={{ author }}
          components={{ authorLink: <a href={author.url}>placeholder</a> }}
        />
      </footer>
    </article>
  );
}

export const getStaticProps = async ({ locale }) => ({
  props: {
    ...(await serverSideTranslations(locale, ['reviews'])),
  },
});

在您的翻译文件中,您将拥有:

{
  "footer": "My footer text <authorLink>{{author.name}}</authorLink>"
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM