只有几个类似的问题,这两个问题的解决方案在我的情况下都不起作用。下面是给出此错误的代码片段:
的数据
homepage.tsx文件:
export const CTASection = () => {
const {t, i18n} = useTranslation( {keyPrefix:("homepage.ctaSection")} )
return (
<StyledSection>
<CTAContainer>
<Header>{t('Header')}</Header>
<Subtitle>
Play and learn <i>risk-free</i>. Prove your knowledge, speculate and
win!
</Subtitle>
.....
字符串
我的JSON文件:
[
{
"homepage": {
"ctaSection": {
"header": "some thing"
}
}
}
]
型
实际上,我试图使用JSON文件的内容显示在主页的标题部分,我实际上得到的是错误。
2条答案
按热度按时间wr98u20j1#
根据Doc,该选项位于第二个参数上。
字符串
mctunoxg2#
请尝试以下操作:
字符串