0

这是这个How to fetch index data in Angular using rails server的后续问题

问题 如何使用 html 正确上传/链接角度模块?

按照接受的答案并更新代码,我无法加载模块用户:

Uncaught Error: No module: users 

我的项目的要点在这里

更新代码:

app.factory('User', function($resource) {
  return $resource "users/:id", { id: '@id' }, {
    index:   { method: 'GET', isArray: true, responseType: 'json' },
    show:    { method: 'GET', responseType: 'json' },
    update:  { method: 'PUT', responseType: 'json' }
  }
})

var UsersIndexCtrl = function($scope, User) {
  $scope.users = User.index();
};

根据接受的答案更新的 plunker 在这里

4

1 回答 1

0

您有以下语法错误

return $resource "users/:id", { id: '@id' }, {
    ...
}

应该

return $resource("users/:id", { id: '@id' }, {
    ...
});
于 2013-08-19T12:55:25.430 回答