0

我想在 AngularJS 中使用 $resource 进行查询,以便使用表的次要特征。我有一个 $resource 将给我所有的推文......(全部在咖啡脚本中)

angular.module('resources.movies', ['ngResource'])

.factory("Tweet", ["$resource", "API_PREFIX", ($resource, API_PREFIX) ->
  $resource("#{API_PREFIX}/tweets/:id",
    {id: "@id"},
    update: {method: "PUT"}
  )
])

在控制器中(在咖啡脚本中):

$scope.tweets = Tweets.query(recipientID: user.id)

我想做一些类似 SELECT * from Tweets where 的事情tweet.recipientID = id。它没有使用主键(所以它不是很安静)。我可以这样做吗?

4

0 回答 0