i18next:使用函数“ t()”获取字符串,资源文件尚未加载

时间:2019-07-09 06:43:40

标签: reactjs i18next

我使用i18next的函数't()'获取字符串,返回值是不确定的。原因是获取字符串时未加载资源文件。

interface Props{
    AppName:string
}
export default class TestComponent extends React.Component<Porps>{
    render(){
        return (<h2>{this.props.AppName}</h2>)
    }
}
static defaultProps={
    AppName:t('title')
}

t('title')的返回值不确定

0 个答案:

没有答案