在Angular-Meteor tutorial step 9之后,我尝试创建一个使用Meteor集合的Angular指令。
此文件位于根文件夹中:
TicTacToeBoards = new Meteor.Collection("tic_tac_toe_boards");
if (Meteor.isServer) {
Meteor.publish('TicTacToeBoards', function() { return TicTacToeBoards.find(); });
}
此文件位于/ client文件夹中:
angular.module('TicTacToe').directive('tictactoegraph', function() {
return {
templateUrl: 'client/graph/tictactoegraph.ng.html',
scope: true,
controller: function($scope, $meteor, Sigma, TicTacToeClass) {
$scope.TicTacToeBoards = false;
$meteor.subscribe('TicTacToeBoards').then(function(subscriptionHandle){
$scope.TicTacToeBoards = $meteor.collection(TicTacToeBoards);
});
},
link: function($scope, element, attrs) {
// TODO: Ask SO if there's a better way to wait on the subscription....
$scope.$watch('TicTacToeBoards', function(newValue, oldValue) {
if ($scope.TicTacToeBoards) {
console.log($scope.TicTacToeBoards); // An array of objects.
var nextBoards = $scope.TicTacToeBoards.find({ numberOfMoves: 0 });
}
});
}
}
}
不幸的是,它给出了一个错误:
TypeError:$ scope.TicTacToeBoards.find不是函数
$scope.TicTacToeBoards
似乎不是Mongo游标,而是TicTacToeBoards.find()将返回的对象数组。为什么它不是光标?
答案 0 :(得分:1)
你是对的,$ meteor.collection不返回游标,它返回一个AngularMeteorCollection类型的数组,它不同: http://angular-meteor.com/api/AngularMeteorCollection
这样做是因为我们希望为Angular开发人员提供一个常规数组,并使用它可以轻松使用它。
虽然向该数组添加find
函数是一个有趣的想法。
想要使用该函数返回过滤的对象吗?
您可以使用过滤器,但也许我们也可以添加此选项