我在我的混合应用程序(Windows 10)中使用了salesforce身份验证。我已经集成了InAppBrowser插件来在Web视图中加载URL。
当有人从应用程序注销时,我遇到了问题,因此缓存无法清除。
我也试过以下代码但是options参数不能用于windows平台。它只在android和ios平台上工作。
var options = "clearcache=yes;clearsessioncache=yes";
console.log(authUrl);
//Wait till the cordova platform is ready before triggering the inappbrowser plugin
this.platform.ready().then(() => {
this.inAppBrowserRef = new InAppBrowser().create(authUrl, '_blank', options);
});
有没有其他方法可以清除与Windows平台的InAppBrowser关联的所有缓存?
感谢任何帮助。
答案 0 :(得分:0)
它应该工作。 与其他网址交叉检查可能会与网站网址或Windows应用程序发生问题。
你是说Windows平台,它适用于Android和iOS吗? 谢谢