reactjs – React-native,清晰的webview cookie?

前端之家收集整理的这篇文章主要介绍了reactjs – React-native,清晰的webview cookie?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有可能清除react-native webview cookie吗?当我替换到其他视图并返回并再次安装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);
  });
原文链接:https://www.f2er.com/react/301046.html

猜你在找的React相关文章