Localhost AJAX请求错误

时间:2015-10-28 10:10:51

标签: php jquery ajax localhost jsonp

当我尝试发出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); }); }); }); 不会返回任何内容

0 个答案:

没有答案