OData と JQuery を併用しています。ここでの問題は、ヘッダー値が必要なため、ヘッダーを取得する必要があることです。皆さんは構文を知っていますか?
私のコードは次のとおりです。
OData.request( {headers: { "X-CSRF-Token" :"Fetch" }, requestUri:queryserviceUriNew, user: uname, password: pword },
function (data, response)
{
//Success Callback (received data is a Feed):
alert("Retrieved.");
alert(response);
// This is the object that hold the response, I need to capture the header value for "x-csrf-token"
}
専門家に感謝します!