我正在尝试使用 Angularjs 从我放在 Heroku 上的 Rails 测试应用程序中获取 JSON。您将在下面找到我的 Angular 和 Rails 代码。
这是我在 Firebug 控制台中遇到的错误。“网络错误:404 未找到 - http://desolate-earth-2852.herokuapp.com/declarations.json ”
这不起作用有什么原因吗?
Angularjs 代码
var App = angular.module('App', []);
App.controller('TodoCtrl', function($scope, $http) {
$http.get('http://desolate-earth-2852.herokuapp.com/declarations.json')
.then(function(res){
$scope.todos = res.data;
});
});
导轨代码
def index
@declarations = Declaration.all
respond_to do |format|
format.html # index.html.erb
format.json { render json: @declarations }
end
end
以下是路线
Test::Application.routes.draw do
root :to => 'welcome#index'
get "welcome/index"
resources :declarations
end