为什么react-i18next库中的函数t将“转换为”

时间:2019-07-24 07:25:19

标签: reactjs i18next react-i18next

例如,我有名称空间ns1

const {t} = useTranslation(['ns1']);

ns1包含:

{
    "form": {
        "title": "Title of {{name}}"
          }
   }

如果我打印字符串,其中const name='"hello"';

console.log(t('form.title', {name}));

我将得到以下结果:

> Title of "hello"

如何修复它?

0 个答案:

没有答案