当我尝试发出AJAX请求时收到错误。 输出是
function initSmartobject(){
$.ajax({
url:"http://127.0.0.1/limpid/php/usersManagement.php?tag=getTopics&id=1",
dataType: 'jsonp', // Notice! JSONP <-- P (lowercase)
success:function(json){
// do stuff with json (in this case an array)
alert("Success");
},
error: function(xhr, status, error) {
alert('errore');
var err = eval("(" + xhr.responseText + ")");
alert(err.Message);
}
});
}
请求代码是
err.Message
phonecatApp.run(function($rootScope, $window) {
$rootScope.$on('$viewContentLoaded', function(){
$(document).ready(function(){ window.scrollTo(0, 0); });
});
});
不会返回任何内容