MongoDB
 sql >> Baza danych >  >> NoSQL >> MongoDB

Obsługa relacji meteor-kątowych

Skończyło się na przekazywaniu zarówno kolekcji, jak i filtrowania za pomocą kąta:

Kontroler

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

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

Meteor Opublikuj

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

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

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

Zobacz

<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. Zmiana kształtu dokumentu MongoDB

  2. Jak uzyskać datę utworzenia kolekcji MongoDB przy użyciu sterownika MongoDB C#?

  3. MongoDB:Liczenie, ile elementów o danej wartości istnieje w tablicy, czyli w dokumencie?

  4. Spring Data Mongodb:Aktualizacja dokumentów

  5. Jak utworzyć indeks tekstowy w mongodb z golangiem i biblioteką mgo?