我在我的项目中使用 react-intl 并为任何语言加载 json 文件,但我需要我的 json 文件具有树格式。当我加载我的组件时 react-intl 打印 json 的密钥字符串。例如:
{
"header":{
"title": "My title",
"text": "My text"
},
"footer":{
"title": "My title",
"text": "My text"
}
}
当我使用:
<p><FormattedMessage id="header.title"/></p>
结果是:
<p>header.title</p>
任何想法?