在视图中访问集合(MeteorJS + Angular)

时间:2015-08-20 07:55:25

标签: angularjs meteor collections

我在集合中有数据,我想在我的视图中访问该信息(HTML文件)。我有点不确定如何接近它。我已经在线查看,并没有找到多少。我想到的唯一方法是创建一些基本上将数据库中的东西复制到数组的函数,但我觉得可能有一个更简单的方法加上,它似乎不太可靠我。有什么想法吗?

代码:

 Meals = new Mongo.Collection("meals-info");

 if (Meteor.isClient) {
   var myApp = angular.module('calorie-counter',['angular-meteor']);

   Meteor.subscribe('meals-info');


   myApp.controller('formCtrl',['$scope',function($scope) {

   $scope.allMeals = $meteor.collection(Meals); //Not working for some reason

   $scope.meal = {
     item1: '',
     item2: '',
     createdBy: ''
   };
 }]);
}

0 个答案:

没有答案