我正在尝试向服务器发送自定义标头。但我没有在服务器上的请求标头中看到它。 我尝试使用以下内容:
var ajaxImpl = breeze.config.getAdapterInstance("ajax");
ajaxImpl.defaultSettings = {
headers: {
// any CORS or other headers that you want to specify.
"X-Test-Header": "foo2"
},
};
以及:
var ajaxImpl = breeze.config.getAdapterInstance("ajax");
ajaxImpl.defaultSettings = {
beforeSend: function(jqXHR, settings) {
// examine the jqXHR or settings and customize the headers accordingly.
jqXHR.setRequestHeader("X-Test-Before-Send-Header", "foo2");
}
};
我尝试使用" ajax"以及" dataService"作为AdapterInstance。 我不知道为什么这不起作用......