2016-03-08 54 views
-1

我想發佈標題值到服務器,但值不嵌入請求標頭這就是爲什麼它給我錯誤的答案。我知道,我做錯了什麼,但我無法弄清楚。以下是我的代碼。Angularjs 1.x和Typescript和發佈值到服務器

checkMobileNo (mob: any): ng.IPromise<ng.IHttpPromiseCallbackArg<any>>{ 
    var config: ng.IRequestShortcutConfig = { 
    headers: { 
     MobileNo : mob, 
     DeviceFlag : 'WebOS' 
    } 
    }; 
    return this.$http.post("http://abcd.com/api/DemoWebAPI/IsValidMobileNo", config) 
} 

我已經將參考路徑添加到該代碼中。

回答

2

post method簽名

post(url, data, [config]) 

而且你使用

post(url, config) 

所以你傳遞的配置對象,其實是發送的請求的主體/數據。

+0

此問題然後在其上參數應我通過標頭值的數據或配置?因爲我傳遞的數據值是{},那麼也給了我同樣的問題。 – RahulSalvikar

-1

我解決使用此線

return this.$http.post("http://abcd.com/api/DemoWebAPI/IsValidMobileNo", {}, config) 
相關問題