在extjs 3.4中处理用于ajax调用的Windows身份验证握手(401),可以通过以下步骤实现:
以下是一个示例代码:
Ext.Ajax.request({
url: 'your_url',
method: 'GET',
headers: {
'Authorization': 'Negotiate'
},
success: function(response) {
// 请求成功处理逻辑
},
failure: function(response) {
if (response.status === 401) {
// 捕获到401状态码,进行Windows身份验证握手
var cookies = Ext.util.Cookies.get(document.location.hostname);
Ext.Ajax.request({
url: 'your_url',
method: 'GET',
headers: {
'Authorization': 'Negotiate ' + cookies
},
success: function(response) {
// 请求成功处理逻辑
},
failure: function(response) {
// 请求失败处理逻辑
}
});
}
}
});
请注意,以上代码仅为示例,实际情况可能会有所不同。此外,由于extjs 3.4已经过时,建议考虑升级到较新版本的extjs框架。
没有搜到相关的沙龙
领取专属 10元无门槛券
手把手带您无忧上云