当前位置: 代码迷 >> Web前端 >> 透过Titanium API删除Webview的所有Cookie
  详细解决方案

透过Titanium API删除Webview的所有Cookie

热度:270   发布时间:2012-07-16 15:44:59.0
通过Titanium API删除Webview的所有Cookie
Deleting all cookies in webview using Titanium API

var path  = Titanium.Filesystem.applicationDataDirectory;
var searchKey = path.search('Documents');
path = path.substring(0,searchKey);
path = path + 'Library/Cookies/'
alert(path);


这里取得的path就是放置Cookies.binarycookies的文件路径。取得该路径后将其清理为空即可删除Cookies。
  相关解决方案