下面我有在asp.net
現在,我想用angularjs如下張貼控制器動作。但它不起作用。
$http.post('/api/room/ReportProblem?BusinessID=1' +
'&RoomID=1'+
'&RoomFacilityID=1' +
'&ComponentID=1' +
'&BinImages=null' +
'&ProblemDesc=eee',
{
headers: {'Content-Type': 'application/x-www-form-urlencoded'
}
)
.success(function (response) {
console.log(
});
「它不工作」 是不夠具體。在瀏覽器中調出F12開發人員工具,單擊網絡選項卡,然後觀看正在進行的調用(如果有)。服務器返回什麼內容? –
請具體說明您收到哪個http狀態碼 –