gpt4 book ai didi

javascript - meteor 与铁路路径

转载 作者:行者123 更新时间:2023-11-28 00:15:46 26 4
gpt4 key购买 nike

当我单击用户名时,我希望链接转到他们的个人资料页面。我正在使用 Meteor 和铁路由器。以下是定义的路线:

Router.route('/', { name: 'JobsList'}); //homepage with all users

//this is where the user's profile is located and works:
Router.route('/company/:_id/', {
name: 'CompanyPage',
data: function() { return Meteor.users.findOne(this.params._id); }
});

//this page shows all users with url that works:
Router.route('/companies/', {name: 'CompaniesList'});

当我将鼠标悬停在主页上的用户名称上时,我得到了错误的链接,但当我将其名称悬停在“/companies/”页面上时,我得到了正确的链接。为了生成链接,我使用 pathFor "CompanyPage"

我是否遗漏了一些导致主页网址不正确的内容?你需要看什么js或html?请告诉我,我将编辑这篇文章。谢谢。

最佳答案

为了获得正确的链接,您必须使用以下语法:

{{pathFor 'CompanyPage' _id=userId }}

其中 this._id 应该是用户的 ID

发生了什么:

对于带有某种附加标识符的路由,Iron Router 会在 this 中查找相同的标识符名称。如果将 this 设置为正确的数据上下文,那么它会起作用,但是对于您的 / 路由,您没有定义数据上下文。在 CompanyPage 上,数据上下文被定义给正确的用户。

关于javascript - meteor 与铁路路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30467393/

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