gpt4 book ai didi

javascript - 最佳实践 : Should I use ng-switch for this?

转载 作者:数据小太阳 更新时间:2023-10-29 05:33:06 27 4
gpt4 key购买 nike

<分区>

我在 Angular 中得到了这个对象。

$scope.columns = {
workspace: {
title: "Workspace",
type: "workspace",
activities: []
},
alerts: {
title: "Alerts",
type: "alert",
activities: []
},
main: {
title: "Main Feed",
type: "main",
activities: []
}
};

在我的 HTML 中,我需要遍历它以在我的应用程序中动态创建一系列列(想想像 Trello 这样的东西)

每个type是对自定义指令的引用。

我正在尝试找出放置指令的最佳方式。

根据这些数据,下面的代码是否是处理动态创建这些的适当方法?

<div ng-repeat="(key, obj) in columns">

<div ng-switch on="obj.type">
<workspace-feed ng-switch-when="workspace" />
<alert-feed ng-switch-when="alert" />
<main-feed ng-switch-when="main" />
<filter-feed ng-switch-when="filter" />
</div>

</div>

我希望能够做类似... <{{obj.type}}-feed />但我不确定这是否有效,或者是否有更好的方法来创建它。

非常感谢您的想法!

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