在 AngularJS 中,我有以下功能,效果很好:
$http.get( "fruits.json" ).success( $scope.handleLoaded );
现在我想将它从一个文件更改为一个 url(使用一些甜蜜的 Laravel 4 返回 json):
$http.get( "http://localhost/fruitapp/fruits").success( $scope.handleLoaded );
我得到的错误是:
"NetworkError: 405 Method Not Allowed - http://localhost/fruitapp/fruits"
有什么问题?是因为fruit.json 是“本地”而 localhost 不是吗?