gpt4 book ai didi

javascript - 使用 AJAX 将 cookie session 数据存储到 Jquery(不使用 PHP)

转载 作者:行者123 更新时间:2023-11-27 23:36:41 25 4
gpt4 key购买 nike

如果可能的话,很难找到明确的信息。我当前正在 Sharepoint 2010 上运行。使用使用 AJAX 的 REST 方法处理页面。我想知道是否有办法能够识别谁登录了?我的第一 react 是寻找一种使用 AJAX 和 Jquery 获取 cookies session 数据的方法。那次冒险并没有持续太久。

我正在扫描页面上现有成功 AJAX 请求的网络数据。有没有办法通过同样的请求并要求向我提供请求 header 的 cookie 数据?

loadActiveIncidents: function () {
$.ajax({
url: this.basePath() + '/PROD_Incidents?$filter=ÉtatValue%20ne%20%27Fermé%27&$orderby=PrioritéValue desc',
dataType: 'json',
cache: false,
success: function (data) {

$.each(data.d.results, function (index, incident) {

$('#example tbody').append(
"<tr>" +
"<td class='over_flow_control'> <button class='edit_button btn btn-default btn-sm' name ='btnSubmit' type='button' value='Edit' data-ID='"+incident.ID+"'><i class='glyphicon glyphicon-edit'></i></button></td>" +
"<td class='over_flow_control'>" + incident.Incident + "</td>" +
"<td class='over_flow_control'><h4><span class='priorité_span'>" + incident.PrioritéValue + "</span></h4></td>" +
"<td class='over_flow_control'>" + incident.Composante + "</td>" +
"<td class='over_flow_control text-left'>" + incident.Description + "</td>" +
"<td class='over_flow_control Date_de_début_cell'>" + incident.Date_de_début + "</td>" +
"<td class='over_flow_control'>" + incident.ResponsableValue + "</td>" +
"</tr>");
})
IncidentManager.table_conditional_format();
$('#loading').hide("slow");
$('#example').show("slow");
}
});
},

最佳答案

我想你可能会使用 https://github.com/carhartl/jquery-cookie

然后您可以执行以下操作:$.cookie('mycookie', 'mycookievalue');

删除:$.removeCookie('mycookie');

关于javascript - 使用 AJAX 将 cookie session 数据存储到 Jquery(不使用 PHP),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34080851/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com