想要找到与当前相关的下一个和上一个对象。
这就是我的
this.props._id = currentId;
// Fetch current object data
data.video = Videos.findOne({_id: this.props._id});
// Using votes string from object above to find me objects
data.next = Videos.findOne({votes: {$gte: data.video.votes}});
data.previous = Videos.findOne({votes: {$lte: data.video.votes}};
我知道这是不正确的,确定它会返回对象,但它不会是最近的对象,我也有可能返回当前对象。
我想做的是返回我的选择器投票的下一个或上一个对象,我还想确保使用Id来排除当前对象,那么几个对象也很可能具有相同的数字投票。
现在已经连续12个小时了,并且几乎回到我开始的地方所以非常感谢一些例子让我围绕这个,不知道我是否应该使用find或findOne。
以下是完整的代码
VideoPage = React.createClass({
mixins: [ReactMeteorData],
getMeteorData() {
var selector = {};
var handle = Meteor.subscribe('videos', selector);
var data = {};
data.userId = Meteor.userId();
data.video = Videos.findOne({_id: this.props._id});
data.next = Videos.findOne({votes: {$gte: data.video.votes}});
data.previous = Videos.findOne({votes: {$lte: data.video.votes}};
console.log(data.video.votes);
console.log(data.video);
console.log(data.next);
console.log(data.previous);
return data;
},
getContent() {
return <div>
{this.data.video.votes}
<Youtube video={this.data.video} />
<LikeBox next={this.data.next._id} previous={this.data.previous._id} userId={this.data.userId} video={this.data.video} />
</div>
;
},
render() {
return <div>
{(this.data.video)? this.getContent() :
<Loading/>
}
</div>;
}
});
答案 0 :(得分:1)
你需要:
<强> JS:强>
data.video = Videos.findOne({ _id: currentId });
// object with next highest vote total
data.next = Videos.findOne({ _id: { $ne: currentId },
votes: { $gte: data.video.votes }},{ sort: { votes: 1 }});
// object with next lowest vote total
data.previous = Videos.findOne({ _id: { $ne: currentId },
votes: { $lte: data.video.votes },{ sort: { votes: -1 }});