Angular-Meteor チュートリアルのステップ 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() が返すオブジェクトの配列です。なぜカーソルではないのですか?