4
jquery $ .ajax'tan açısal $ http'ye
Çapraz orijinden iyi çalışan bu jQuery koduna sahibim: jQuery.ajax({ url: "http://example.appspot.com/rest/app", type: "POST", data: JSON.stringify({"foo":"bar"}), dataType: "json", contentType: "application/json; charset=utf-8", success: function (response) { console.log("success"); }, error: function (response) { console.log("failed"); } }); Şimdi bunu herhangi bir başarı olmadan Angular.js koduna dönüştürmeye çalışıyorum: $http({ url: "http://example.appspot.com/rest/app", dataType: "json", method: "POST", …