我試圖連接到外部POST api進行身份驗證。 我想:從角度連接到REST API
$http({
method : 'POST',
url : 'myURL',
data : {"j_username": "myUserName,"j_password": "myPassword"},
headers : {
'Content-Type': 'application/x-www-form-urlencoded',
}
})
但我發現了這個錯誤:
的XMLHttpRequest無法加載http://...url。預檢的響應爲 無效(重定向)
也許dup http://stackoverflow.com/q/33660712/367865 – Ouroborus
錯誤是告訴你,當請求時這個URL重定向到另一個。選中此[回答](http://stackoverflow.com/a/36221621/1488993)以獲取更多詳細信息。 – Doon
你有一個缺少「myUserName後標記太 – rrd