1
我剛開始在我的反應應用程序上使用i18next包,但我遇到了問題。我做了'紗線添加[email protected] - 保存'來安裝軟件包。然後在我的組件我做:i18next在反應應用程序中未定義
import i18next from 'i18next'
// other imports...
// defining class
constructor(props){
super(props)
console.log(i18next.t('Wähle einen Titel für deinen Ratgeber'))
}
,並在渲染方法,我這樣做
<Explainer header={i18next.t('Was macht ein gutes Thema aus?')}>
<GoodTitleExplainer/>
</Explainer>
所以,在控制檯上,我越來越不確定和錯誤的道具header
標根據Explainer
的要求,但其值爲undefined
。
我得到它在另一個項目中工作,但我不知道這裏有什麼問題。請幫助。