我正在与 i18next 合作进行reacthttps://github.com/i18next/react-i18next。我正在努力在我的 JSON 语言文件中的字符串中换行。
这是我已经尝试过的,它不会换行:
line: "This is a line. \n This is another line. \n Yet another line"
,line: ("This is a line."+ <br/> + "This is another line. \n Yet another line")
,line: ('This is a line. <br/> This is another line. \n Yet another line')
,
我显然尝试在每个句子后换行。我是这样称呼它的:
<TooltipLink onClick={() => {
this.toggleHelpTextDialog(t('test:test.line'));
}}/>
有任何想法吗?谢谢!