IT虾米网

reactjs之React-native,清除 webview cookie

lovecherry 2026年05月17日 程序员 149 0

可以清除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); 
  }); 


评论关闭
IT虾米网

微信公众号号:IT虾米 (左侧二维码扫一扫)欢迎添加!