可以清除react-native webview cookie吗?当我替换为其他 View 并再次返回并挂载 webview 时,看起来 cookie 仍然存在于 webview 中..
问候
请您参考如下方法:
您可以使用react-native-cookies管理您的应用程序 cookie。
import CookieManager from 'react-native-cookies';
// clear cookies on webview will mount!
CookieManager.clearAll()
.then((res) => {
console.log('CookieManager.clearAll =>', res);
});






