1

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"

      }

専門家に感謝します!

4

1 に答える 1

1

他の誰かが答えを探している場合、構文は次のとおりです。

var header_value; // variable = variable_hold_httpResponse.headers['header_item_that_you_want_to_get']; header_value = response.headers['x-csrf-token'];

乾杯!

于 2012-04-26T01:53:47.690 に答える