在我从我的链接(http://mubi-app.herokuapp.com/api/v1/home)中检索数据之前,我用浏览器测试它,没关系。它返回 Json 格式,但是当我使用 ajax 访问该链接时出现错误。谢谢,
这是我的代码......
<script type="text/javascript" charset="utf-8">
$(document).ready(function() {
$.ajax({
type:"GET"
, url:"http://mubi-app.herokuapp.com/api/v1/home"
, dataType:"jsonp"
, success: function(data){
debugger;
$('#result').text(data)
}
, error: function(e) {
debugger;
console.log(e)
alert(e + "Error");
}
});
});
</script>