我試圖從post請求中獲取響應頭,但HttpResponse對象不包含我在網絡中可以看到的相同頭。我究竟做錯了什麼?我需要訪問Apiproxy-Session-Id密鑰的值,並且它不在HttpHeaders中。在Angular中從HttpClient post請求獲取響應頭文件?
這是我的代碼來執行發佈請求並記錄完整響應,其中http是一個HttpClient對象。
this.http.post('http://localhost:8081/user/login', JSON.stringify(requestBody), {observe: 'response'}).subscribe(resp => { console.log(resp); });
This is the response I'm logging.
These are the headers I'm seeing in the network.
我新的角度和這個非常難住了。謝謝你的幫助!
您的問題解決了嗎? – theLearner