如果我刷新以保存我使用本地存储的语言,以及用于法院翻译和反应的语言和文本,则不会保留

Language and text are not preserved if I refresh to save the language I used local storage, and for courtpart translation and react

enter image description here----- 如果我刷新页面,文本不会保持不变

从 localStorage 设置初始状态后,您应该调用 counterpart.setLocale() 更新语言环境。

componentDidMount() {
  const { lang } = this.state;
  counterpart.setLocale(lang);
}