当您需要使用 Jquery 和 JavaScript 验证用户会话时,我正在查看 Django 用于获取 CSRF 令牌的函数。这是代码:
function getCookie(name) {
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;
}
var csrftoken = getCookie('csrftoken');
您还可以在 djangoproject 网站上在线查看代码,这里是。
好的,现在当我粘贴这段代码时,我的 IDE 发出了一个轻微的警告,说:
Binary operation argument type String is not assignable to type HTMLCollection
这是什么意思?错误在这一行:
document.cookie && document.cookie != ''