1
コレクションからデータを返そうとするたびに空の配列が返されます。私は鉄のルータを使用していますし、これは私のコードです:
クライアント:
Meteor.call('insertEvent', {
"eventLoc": {
"type" : "Point",
"coordinates": [
eventLongitude,
eventLatitude
]}
}
function getBox() {
var bounds = GoogleMaps.maps.mapSeek.instance.getBounds();
var ne = bounds.getNorthEast();
var sw = bounds.getSouthWest();
Session.set('box', [[sw.lat(),sw.lng()],[ne.lat(),ne.lng()]]);
}
getbox();
サーバー:
Meteor.publish('publicPlaces', function(box) {
var find = {
eventLoc: {
$geoWithin: {
$box: box
}
}
};
return Events.find(find);
});
ルート:
Router.route('/seek', function() {
this.render('seek');
Meteor.subscribe('publicPlaces', Session.get('box'));
};
もちろん、私はそれを見逃して自分自身に怒っている。 ありがとう –