我正在开发java ee应用程序,我有一个页面为不同的用户使用相同的cookie,这是不对的。所以我复制了jquery.cookie.js文件并创建了一个名为jquery.cookie2.js的新文件,并且我也更改了调用脚本,但是它有效,但它有相同的操作。无论我在旧用户中做什么都发生在新的用户身上。我以为它可能是cookie名称所以我从
更改了它jQuery.cookie
到
jQuery.cookie2
之后,它没有奏效。
这是cookie的代码
jQuery.cookie = function(name, value, options) {
if (typeof value != 'undefined') { // name and value given, set cookie
options = options || {};
if (value === null) {
value = '';
options.expires = -1;
}
var expires = '';
if (options.expires && (typeof options.expires == 'number' || options.expires.toUTCString)) {
var date;
if (typeof options.expires == 'number') {
date = new Date();
date.setTime(date.getTime() + (options.expires * 24 * 60 * 60 * 1000));
} else {
date = options.expires;
}
expires = '; expires=' + date.toUTCString(); // use expires attribute, max-age is not supported by IE
}
// CAUTION: Needed to parenthesize options.path and options.domain
// in the following expressions, otherwise they evaluate to undefined
// in the packed version for some reason...
var path = options.path ? '; path=' + (options.path) : '';
var domain = options.domain ? '; domain=' + (options.domain) : '';
var secure = options.secure ? '; secure' : '';
document.cookie = [name, '=', encodeURIComponent(value), expires, path, domain, secure].join('');
} else { // only name given, get cookie
var cookieValue = null;
if (document.cookie && document.cookie != '') {
var cookies = document.cookie.split(';');
for (var i = 0; i < cookies.length; i++) {
var cookie = jQuery.trim(cookies[i]);
// Does this cookie string begin with the name we want?
if (cookie.substring(0, name.length + 1) == (name + '=')) {
cookieValue = decodeURIComponent(cookie.substring(name.length + 1));
break;
}
}
}
return cookieValue;
}
};
我的问题是如何在一个应用程序中使用不同的cookie?
答案 0 :(得分:0)
您刚刚复制并粘贴了Cookie模块的源代码,这对您没有帮助。删除jquery.cookie2.js。如果要使用两个不同的cookie,请设置两个不同cookie的值:
//Set values
$.cookie('user1', 'firstValue');
$.cookie('user2', 'differentValue');
//Retrieve values
$.cookie('user1'); //Returns 'firstValue'
$.cookie('user2'); //Returns 'differentValue'
我不确定您是否需要使用cookie,特别是如果您的目标是在同一台计算机/浏览器上为不同用户加载客户端的某些信息。有关使用localStorage
的替代方案的详细信息,请参阅此答案,特别是如果您不需要在每次加载页面时都将信息发送到服务器:https://stackoverflow.com/a/28253089/830125。