在phonegap中清除cookie /禁用使用cookie的phonegap

时间:2015-01-27 09:44:28

标签: javascript android cordova cookies

我目前正在为我的移动应用程序创建一个登录系统。当我登录到我的服务器时,mu服务器发回一个JSESSIONID,我可以用它来验证我自己的进一步调用。我在这里遇到的问题是PhoneGap似乎在没有我要求的情况下自动保存这个cookie。这样,我无法提供注销功能,因为PhoneGap正在保存cookie,并且总是在我发出的每次通话中将其发送回服务器....我使用xmlhttp请求。 我想要一种方法来删除这个cookie,或者首先禁止PhoneGap保存cookie的方法,并自己处理会话cookie。 我一直在寻找这个饼干,但我似乎无法找到它。 有人知道如何解决这个问题吗?

1 个答案:

答案 0 :(得分:1)

在包中创建类(CacheCleaner.java文件)" org.apache.cordova.plugins"

package org.apache.cordova.plugins;

            import java.io.File;

            import org.apache.cordova.CallbackContext;
            import org.apache.cordova.CordovaPlugin;
            import org.apache.cordova.PluginResult;
            import org.json.JSONArray;

            import android.util.Log;
            import android.widget.Toast;

            public class CacheCleaner extends CordovaPlugin {

                public static final String LOG_PROV = "PhoneGapLog";
                public static final String LOG_NAME = "CacheCleaner Plugin";

                @Override
                public boolean execute(final String action, final JSONArray args, final CallbackContext callbackContext) {
                    if (action.equals("del")) {
                        cordova.getThreadPool().execute(new Runnable() {
                            @Override
                            public void run() {
                                try {
                                    final File dir = cordova.getActivity().getCacheDir();
                                    if (dir != null && dir.isDirectory()) {
                                        deleteDir(dir);
                                        showToast("Cache is deleted.","short");
                                    }
                                    callbackContext.sendPluginResult(new PluginResult(PluginResult.Status.OK));
                                } catch (Exception e) {
                                    e.printStackTrace();
                                    Log.e(LOG_PROV, LOG_NAME + ": Error: " + PluginResult.Status.ERROR);
                                    callbackContext.sendPluginResult(new PluginResult(PluginResult.Status.ERROR));
                                }
                            }
                        });
                        return true;
                    } else {
                        Log.e(LOG_PROV, LOG_NAME + ": Error: " + PluginResult.Status.INVALID_ACTION);
                        callbackContext.sendPluginResult(new PluginResult(PluginResult.Status.INVALID_ACTION));
                        return false;
                    }
                }

                public static boolean deleteDir(final File dir) {
                    if (dir != null && dir.isDirectory()) {
                        final String[] children = dir.list();
                        for (int i = 0; i < children.length; i++) {
                            final boolean success = deleteDir(new File(dir, children[i]));
                            if (!success) {
                                return false;
                            }
                        }
                    } else if (dir != null && dir.isFile()) {
                        dir.delete();
                    }
                    return true;
                }

                private void showToast(final String message, final String duration) {
                    cordova.getActivity().runOnUiThread(new Runnable() {
                        @Override
                        public void run() {
                            if(duration.equals("long")) {
                                Toast.makeText(cordova.getActivity(), message, Toast.LENGTH_LONG).show();
                            } else {
                                Toast.makeText(cordova.getActivity(), message, Toast.LENGTH_SHORT).show();
                            }
                        }
                    });
                }
            }

创建javascript文件&#34; cachecleaner.js&#34;

cordova.define("cordova/plugin/cachecleaner", function (require, exports, module) {
                var exec = require("cordova/exec");
              module.exports = {
                    del: function (win, fail) {
                    exec(win, fail, "CacheCleaner", "del", []);
                    }
                };
            });

将以下行添加到&#34; config.xml&#34;将文件放在Android项目的res文件夹中。

<feature name="Share"><param name="android-package" value="org.apache.cordova.plugins.CacheCleaner" /></feature>

在你的html文件中使用此代码,当点击任何按钮缓存时都是清楚的。

使用此功能: -

 $(document).on('click','.abs',function(){
             var cachecleaner = cordova.require("cordova/plugin/cachecleaner");
              cachecleaner.del(
                function () {
             console.log("PhoneGap Plugin: CacheCleaner: callback success"); 
              window.location.href = "index.html";             
                },
                function () {
                  console.log("PhoneGap Plugin: CacheCleaner: callback error");
                }
              );