如何在javascript中删除和重置cookie?

如何在javascript中删除和重置cookie?,javascript,cookies,Javascript,Cookies,我试图删除API cookie并将其重置为新对象,但当我这样做时,它会为我添加另一个API cookie 下面是我使用cookies.js的代码 我的情况是: var dataPromise = get_api_token_refresh_token(refresh_token).done(handleData).fail(failHandler); dataPromise.success(function (api_token) { var something = docC

我试图删除API cookie并将其重置为新对象,但当我这样做时,它会为我添加另一个API cookie

下面是我使用cookies.js的代码

我的情况是:

   var dataPromise = get_api_token_refresh_token(refresh_token).done(handleData).fail(failHandler);
    dataPromise.success(function (api_token) {
   var something = docCookies.removeItem('API');
        console.log(something);
        docCookies.setItem("API", JSON.stringify(api_token));
   });
注意:Cookie是在asp.net mvc代码中设置的

"API=%7B%22access_token%22%3A%22f7b87fc2-f2d5-43e8-a6d2-cc4a89da7a50%22%2C%22token_type%22%3A%22bearer%22%2C%22refresh_token%22%3A%223630934c-93c3-4497-abfb-9022428fce4c%22%2C%22expires_in%22%3A431999%2C%22scope%22%3A%22read%20write%22%7D; fc_vid=visitor1089537543049; _gat=1; Email Id=; Password=; API={"access_token":"fca10765-e1b0-42bf-bc11-47d4e436533b","token_type":"bearer","refresh_token":"969b3993-983c-4308-8542-bc0b0cd861ac","expires_in":429373,"scope":"read write"}; pnctest=1; fc_g=%7B%22session_geo%22%3A%22%7B%5C%22locale%5C%22%3A%7B%5C%22country%5C%22%3A%5C%22us%5C%22%2C%5C%22lang%5C%22%3A%5C%22en%5C%22%7D%2C%5C%22current_session%5C%22%3A%7B%5C%22url%5C%22%3A%5C%22http%3A%2F%2Flocalhost%3A5567%2FHome%2FIndex%5C%22%7D%2C%5C%22browser%5C%22%3A%7B%5C%22browser%5C%22%3A%5C%22Chrome%5C%22%2C%5C%22version%5C%22%3A43%2C%5C%22os%5C%22%3A%5C%22Windows%5C%22%7D%2C%5C%22device%5C%22%3A%7B%5C%22is_tablet%5C%22%3Afalse%2C%5C%22is_phone%5C%22%3Afalse%2C%5C%22is_mobile%5C%22%3Afalse%7D%7D%22%7D; _ga=GA1.1.1692099365.1433096280"
你可以使用插件。它非常容易使用:

删除cookie:

string token_string = "";
                if (loginResult.User != null)
                {
                    //make a call to the REST api authentication method and get accesstokens
                    token_string = OAuthHelper.getTokenFromAPIServer(api_auth_username, api_auth_password);
                    if (collection["Check"] != null)
                    {
                        check = collection["Check"];

                        if (check == "on")
                        {
                            FormsAuthentication.SetAuthCookie(loginResult.User.Name, true);
                            Response.Cookies[Constants.Cookies.USERNAME].Value = loginResult.User.Email;
                            Response.Cookies[Constants.Cookies.PWD].Value = savePassword;//loginResult.User.Password;
                            Response.Cookies[Constants.Cookies.USERNAME].Expires = DateTime.Now.AddDays(10);
                            Response.Cookies[Constants.Cookies.PWD].Expires = DateTime.Now.AddDays(10);


                        }
                    }
                    else
                    {
                        FormsAuthentication.SetAuthCookie(loginResult.User.Name, false);
                        Response.Cookies[Constants.Cookies.USERNAME].Value = string.Empty;
                        Response.Cookies[Constants.Cookies.PWD].Value = string.Empty;
                    }
                    Response.Cookies[Constants.Cookies.API].Value = token_string;
创建会话cookie:

// Returns true when cookie was successfully deleted, otherwise false
$.removeCookie('name'); // => true
$.removeCookie('nothing'); // => false

// Need to use the same attributes (path, domain) as what the cookie was written with
$.cookie('name', 'value', { path: '/' });
// This won't work!
$.removeCookie('name'); // => false
// This will work!
$.removeCookie('name', { path: '/' }); // => true
创建过期cookie,7天后:

$.cookie('name', 'value');
创建过期cookie,在整个站点上有效:

$.cookie('name', 'value', { expires: 7 });
阅读cookie:

$.cookie('name', 'value', { expires: 7, path: '/' });
阅读所有可用的cookie:

$.cookie('name'); // => "value"
$.cookie('nothing'); // => undefined

你能再显示一点代码吗?检查什么
docCookies.removietem(“API”)正在返回。如果成功删除cookie,它通常会返回
true
,否则
false
仍然需要更多的代码,因为我想看看您是如何设置它的。另外,
var-api=api\u令牌
是完全冗余的。@NLN它返回True删除后能否立即显示cookie内容?
$.cookie('name'); // => "value"
$.cookie('nothing'); // => undefined
$.cookie(); // => { "name": "value" }