sql >> Database teknologi >  >> NoSQL >> MongoDB

Håndtering af forhold i meteorvinkel

Jeg endte med at bruge passerer både indsamlingen og filtrering ved hjælp af angular:

Controller

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}})
    ];
});

Se

<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. mongodb unwind matrix indlejret inde i en række dokumenter

  2. Hvordan opdaterer jeg et Mongo-dokument efter at have indsat det?

  3. Opdatering med AddToSet opdaterer ikke null-værdi med MongoDB C#

  4. mongoose-opdatering:$inc virker ikke i upsert