我正在创建一个测验应用。我想展示一个随机问题,接受用户的回答,显示反馈,然后转到另一个随机问题。
我用它来发布一个随机问题:
getRandomInt = function(min, max) {
return Math.floor(Math.random() * (max - min + 1) + min);
};
randomizedQuestion = function(rand) {
// These variables ensure the initial path (greater or less than) is also randomized
var greater = {$gte: rand};
var less = {$lte: rand};
var randomBool = !!getRandomInt(0,1);
var randomQuestion = Questions.find({randomizer: randomBool ? greater : less }, {fields: {body: true, answers: true}, limit: 1, sort: {randomizer: 1}});
// If the first attempt to find a random question fails, we'll go the other direction.
if (randomQuestion.count()) {
return randomQuestion;
} else {
return Questions.find({randomizer: randomBool ? less : greater}, {fields: {body: true, answers: true}, limit: 1, sort: {randomizer: 1}});
}
};
Meteor.publish("question", function(rand) {
if (rand) {
return randomizedQuestion(rand);
}
});
我有一条订阅该出版物的路线:
Router.route("/", {
name:"quiz",
template:"question",
subscriptions: function() {
this.questionSub = Meteor.subscribe("question", Math.random());
},
data: function() {
return {
question: Questions.find(),
ready: this.questionSub.ready
};
}
});
如何使用Math.random()
的新值重新运行查询,以便在用户回答问题后获得另一个随机问题?
答案 0 :(得分:4)
如果使用反应变量替换Math.random()
,则会导致重新评估您的订阅。为简单起见,我将在此示例中使用会话变量。
在路径运行之前的某个位置(在文件的顶部或在之前的挂钩中),初始化变量:
Session.setDefault('randomValue', Math.random());
然后更改您的订阅以使用它:
Meteor.subscribe('question', Session.get('randomValue'));
最后,每当您想要重新启动订阅并更新数据上下文时,请再次更改变量:
Session.set('randomValue', Math.random());
请注意,您可能需要question: Questions.findOne()
而不是question: Questions.find()
,假设您的模板需要文档而不是光标。