gpt4 book ai didi

meteor - 来自url的objectId使用meteorjs与mongo中的一个匹配

转载 作者:行者123 更新时间:2023-12-04 19:46:48 25 4
gpt4 key购买 nike

我是 meteor js 的新手。我从 url 获得了 id,但我无法将它与 mongodb 中的 id 匹配。能帮我吗

Router.map(function () {
this.route('post', {
template:'viewpost',
path: '/post/:_id',
data: function () {
var id = new ObjectID(this.params._id);
return Tasks.findOne({_id: id});

}

});

最佳答案

我怀疑你想返回单个任务?您从 this.params 访问 _id,其中 this 指的是路由器。

Router.map(function () { 
this.route('post', {
template:'viewpost',
path: '/post/:_id',
data: function () {
return Tasks.findOne(this.params._id);
}
});

在您的模板中,您可以开始引用任务,因为它将成为模板的数据上下文;

<p>{{description}}</p>

假设您的任务集合中有一个描述字段。

关于meteor - 来自url的objectId使用meteorjs与mongo中的一个匹配,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28606616/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com