gpt4 book ai didi

javascript - ember 中的动态页面

转载 作者:行者123 更新时间:2023-11-30 17:20:31 25 4
gpt4 key购买 nike

我有 ember.js 和 json :

"id": 150,
"position": 2,
"talk_group_id": 5,
"type": "workshop",

有两种类型:工作坊或演示。我想在一页中只显示一种类型的模型。

如果可能的话,我想做这个动态的.. 例如 Ember 检查类型。在导航中找到 2 并创建 2 个动态页面,当您首先单击时,您会看到带有 workshop 类型的列表。我在 google 中搜索它,但没有发现类似的问题。如果没问题,请给我一些例子。有人帮我吗?

求助! :)

最佳答案

您应该能够使用计算属性并通过执行以下操作根据类型过滤所有模型:

App.IndexController = Ember.ArrayController.extend({
workshops: Ember.computed.filterBy('','type','workshop'),
presentations: Ember.computed.filterBy('','type','presentation'),
});

这是一个工作箱:http://emberjs.jsbin.com/keguq/2/edit

关于javascript - ember 中的动态页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25208259/

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