2015-09-14 232 views
0

我試圖渲染採用了棱角分明我的所有用戶的列表,但我得到一個500內部服務器錯誤,當我嘗試加載users.json的getJSON 500(內部服務器錯誤)

這是我的服務, angular.module( '用戶')

.factory('UsersFactory', ['$http', function($http) { 
    return { 
     loadUsers: function() { 
     return $http.get('/users.json'); 
     } 
    }; 
    }]) 

這是控制器, angular.module( '用戶',[])

.controller('UserListCtrl', [ 

    '$scope', 'UsersFactory', 
    function ($scope, UsersFactory) { 

     var init = function(){ 
     UsersFactory.loadUsers().then(function(response) { 
      $scope.users = response.data; 
      console.log ($scope.users) 
     }); 
     } 
     init(); 

    } 
    ]); 

而我嘗試渲染用戶的模板,

Users 
.user_container{"ng-repeat" => "user in user"} 
    {{ user.name }} 

而這是錯誤在我的rails服務器輸出,

Completed 500 Internal Server Error in 27ms (ActiveRecord: 22.9ms) 

ActionView::MissingTemplate (Missing template users/index, application/index with {:locale=>[:en], :formats=>[:json], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :coffee, :haml, :jbuilder]}. Searched in: 
    * "/home/alucardu/sites/movieseat/app/views" 
    * "/home/alucardu/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/devise-3.5.2/app/views" 
): 
+0

錯誤與您的服務器端代碼和角碼有關,因此您最好將服務器端代碼並​​從問題 – harishr

+0

@entre中移除js代碼感謝您的輸入。使感覺。你能幫我設置控制器和路線來解決這個問題嗎? –

+0

抱歉,但我不知道ror如此無法幫助 – harishr

回答

0

通過把這個,

@users = User.all 
    respond_with(@users) 

在我user_controller.rb這

resources :users, only: [:index, :show] 

在我的routes.rb我得到它的工作。