我使用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')的返回值不确定