我正在尝试在 MeteorJS 应用程序中使用 BackboneJS 实现路由器。当您调用 url 'localhost:3000/1' 我的路由器将 id '1' 存储在会话中。之后,我想从会话中获取 id 并在我的查询中使用它来从我的集合中选择一个对象。但是,每当我尝试在查询中使用会话属性时,它都会失败。所以我想知道是否有更好的方法来使用 MeteorJS 进行路由以及为什么我的查询失败。
测试.js
Meteor.subscribe("test");
Test = new Meteor.Collection("test");
Session.set("id", null);
Template.hello.test = function () {
var avg = 0, total = 0, cursor = Test.find(), count = cursor.count();
cursor.forEach(function(e)
{
total += e.number;
});
avg = total / count;
var session_id = Session.get("id");
var test = Test.findOne({id: session_id}); //doesn't work
if (test) {
test.avg = avg;
}
return test;
}
//ROUTER
var TestRouter = Backbone.Router.extend({
routes: {
":get_id": "get_id"
},
get_id: function (get_id) {
Session.set("id", get_id);
console.log(get_id);
}
});
Router = new TestRouter;
Meteor.startup(function () {
Backbone.history.start({pushState: true});
});
测试.html
<head>
<title>test</title>
</head>
<body>
{{> hello}}
</body>
<template name="hello">
<h1>Hello World!</h1>
{{#if test}}
{{#with test}}
ID: {{id}} Name: {{name}} AVG: {{avg}}
{{/with}}
{{/if}}
</template>
模型.js
Test = new Meteor.Collection("test");
Test.remove({});
if (Test.find().count() < 1)
{
Test.insert({id: 1,
name: "test1",
number: 13});
Test.insert({id: 2,
name: "test2",
number: 75});
}
Meteor.publish('test', function () {
return Test.find();
});