HomeController #index中的ActionController :: UnknownFormat

时间:2015-11-24 05:31:04

标签: ruby-on-rails angularjs

我在rails应用程序中使用angularjs。 在我的js文件中我有这样的代码

var myApp = angular.module('myApp',[]);
myApp.controller('locationController',function($scope,$http){
    $scope.user = {};
    $http.get('./locations.json').success((data) 
    $scope.locations = data
  )})

并在我的控制器操作中 respond_to:json

def index  
  @locations  = Location.all
  respond_with(@locations)
end

1 个答案:

答案 0 :(得分:0)

我刚刚更正了一些语法错误,请在检查以下更正后告诉我。

var myApp = angular.module('myApp',[]);

myApp.controller('locationController',function($scope,$http){

$scope.user = {};

$http.get('./locations.json').success(function(data) {
if(data)
$scope.locations = data;
});
});