有可能清除react-native webview cookie吗?当我替换到其他视图并返回并再次安装webview时,看起来cookie仍然存在于webview中.
问候
您可以使用
react-native-cookies来管理您的应用Cookie.
原文链接:https://www.f2er.com/react/301046.htmlimport CookieManager from 'react-native-cookies'; // clear cookies on webview will mount! CookieManager.clearAll() .then((res) => { console.log('CookieManager.clearAll =>',res); });