MongoDB
 sql >> база данни >  >> NoSQL >> MongoDB

Обработване на връзки в meteor-angular

В крайна сметка използвах предаване както на колекцията, така и на филтрирането с помощта на angular:

Контролер

angular.module("sushisushi24").controller("SearchRestaurantsCtrl",
    function($scope, $stateParams, $meteor){

        $scope.branches = $meteor.collection(Branches).subscribe('branchesAndRestaurants');
        $scope.restaurants = $meteor.collection(Restaurants);
    }
);

Meteor Publish

Meteor.publish('branchesAndRestaurants', function(opts) {

    branches = Branches.find();
    restaurantIds = branches.map(function(branch) { return branch.restaurantId });

    return [
        branches,
        Restaurants.find({_id: {$in: restaurantIds}})
    ];
});

Преглед

<div ng-repeat="branch in branches">
    <div ng-repeat="restaurant in restaurants | filter: {_id:branch.restaurantId}">
        <h3>{{restaurant.name}}</h3>
    </div>
    <address>{{branch.address}}</address>
</div>



  1. Redis
  2.   
  3. MongoDB
  4.   
  5. Memcached
  6.   
  7. HBase
  8.   
  9. CouchDB
  1. Как да направите сложна заявка MongoDB с Powershell

  2. Извършването на актуализация на пътя „_id“ ще промени неизменното поле „_id“

  3. Как да използвам Elasticsearch с MongoDB?

  4. паспорт на възли Грешка:Неизвестна стратегия за удостоверяване локално влизане

  5. Актуализирайте/изтрийте поддокумент в mongodb с помощта на C# драйвер