MeteorJS アプリで BackboneJS を使用してルーターを実装しようとしています。URL 'localhost:3000/1' を呼び出すと、私のルーターは ID '1' をセッションに保存します。その後、セッションから ID を取得し、それをクエリで使用して、コレクションからオブジェクトを選択します。しかし、クエリでセッション属性を使用しようとすると、失敗します。したがって、MeteorJS を使用してルーティングするためのより良い方法があるかどうか、およびクエリが失敗する理由を知りたいです。
test.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});
});
test.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>
model.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();
});