我正在开发一个Extjs-6应用程序。我的服务器应用程序是RestFul。我必须使用Ajax登录。我发送一个Ajax请求如下:
Ext.Ajax.request({
url: 'localhost:8084/Calk/j_spring_security_check',
params: {j_username: 'ali', j_password: '123456',
method: 'POST',
headers: {
'Content-Type': 'application/x-www-form-urlencoded'
},
success: ...,
faiulure: ...,
});
客户收到200 OK
后,会按以下方式阅读商店:
Ext.define('Calk.store.Calk', {
extend: '...',
model: '...',
proxy: {
type: 'ajax',
url: 'localhost:8084/Calk/calk/all',
withCredentials: true,
useDefaultXhrHeader: false,
reader: ...,
method: 'POST'
});
为什么Cookie设置错误? 如何解决??
答案 0 :(得分:1)
在Ext config中设置以下行:
Ext.Ajax.on("beforerequest",function(con){
con.setUseDefaultXhrHeader(false);
con.setWithCredentials(true);
});
所以所有的ajax请求都会发送cookie。