我需要知道Accept-Language
請求標頭值才能在頁面上進行翻譯。我試圖創建一個像如何在客戶端上獲得Accept-Language請求標頭值
$httpProvider.interceptors.push(requestInterceptor);
攔截器,但在方法
request: function (config) {
我攔截
我沒有看到Accept-Language
頭。我看到Accept,Cache-Control,If-Modified-Since,Pragma,但在瀏覽器中我看到Accept-Language
。
您應該有一個標題對象或數組,您可以在其中添加標題信息。 在Angular2/4上,你有這樣的事情: var headers = new Headers(); headers.append('Accept-Language',''xyz); this.http.post(url,data,{ headers:headers }) – moohkooh
@moohkooh當我做請求時,瀏覽器將語言代碼設置爲標題,我需要閱讀它。我不需要設置它,我需要知道瀏覽器設置的價值。 –