4
від jquery $ .ajax до кутового $ http
У мене є цей фрагмент коду jQuery, який працює з чітким крос-походженням: 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"); } }); Тепер я намагаюся конвертувати це в код Angular.js без успіху: $http({ url: "http://example.appspot.com/rest/app", …