gpt4 book ai didi

javascript - meteor 内容不显示

转载 作者:行者123 更新时间:2023-12-02 16:05:45 25 4
gpt4 key购买 nike

我在 Flow Router 或模板级订阅方面遇到问题,但数据未在页面上呈现。

为了防止问题不是我在这里粘贴的问题,我添加了整个 github 存储库的链接:https://github.com/adjohnston/checkr-meteor

lib/routes.js

listRoutes.route('/:slug', {
name: 'list',

subscriptions: function (params) {
this.register('singleList', Meteor.subscribe('singleList', params.slug));
},

action: function () {
FlowLayout.render('mainLayout', {
main: 'list'
});
}
});

服务器/出版物/lists.js

Meteor.publish('singleList', function (slug) {
return Lists.find({slug: slug});
});

client/lists/list.js

Template.list.helpers({
singleList: function () {
return Lists.find();
}
});

client/lists/list.html

<template name="list">

{{#if isSubReady}}
{{#with singleList}}

<h2>Name: {{name}}</h2>

{{/with}}
{{/if}}

</template>

解决方案

由于发布“singleList”仅返回单个结果,因此更改将 Lists.find() 返回为 Lists.findOne()。

client/lists/list.js

Template.list.helpers({
singleList: function () {
return Lists.findOne();
}
});

最佳答案

尝试将您的 singleList 帮助器更改为 findOne:

Template.list.helpers({
singleList: function () {
var slug = FlowRouter.getParam("slug");
return Lists.findOne({slug: slug});
}
});

现在您正在尝试显示光标的 name 属性,这就是 find() 返回的内容。您的 Handlebars 中也不需要 {{#with singleList}}

关于javascript - meteor 内容不显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30765390/

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