📌  相关文章
📜  如何在 React Native 中重新加载 webview - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:01:28.931000             🧑  作者: Mango

代码示例1
You can set a key to the webview

key={this.state.key}
and then you can reload it by updating the state

this.setState({ key: this.state.key + 1 });