在我的应用程序中,我想在单击按钮后清除Webview历史记录。在React Native中是否有像WebView上的clearhistory这样的方法?

就像是:

onClearHistoryButtonClick = (event) => {
  this.refs[WEBVIEW_REF].clearhistory();
};

最佳答案

webview cookies需要清除。
已经在this stack overflow question中回答了

09-05 09:14