gpt4 book ai didi

javascript - 使用 AngularJS ng-repeat 元素属性作为 div id

转载 作者:行者123 更新时间:2023-11-30 12:05:07 24 4
gpt4 key购买 nike

我有这个 HTML:

<div data-ng-repeat="curService in sCtrl.myServices" class="ng-cloak" data-ng-if="sCtrl.service==curService.name">
<br />
<div id="curService.grid"></div>
</div>

还有这个 Angular:

ctrl.myServices = [
{
name: "Service1",
grid: "grid1",
controller: "Controller1 as ctrl1"
},
{
name: "Service2",
grid: "grid2",
controller: "Controller2 as ctrl2"
}
];

我希望 curService.grid 转换为适当的字符串,并将此字符串作为内部 div 的 ID。有办法做到这一点吗?

编辑:我也想设置我的 ng-controller="{{curService.controller}}",但这种语法似乎不起作用。有什么建议吗?

最佳答案

这比您想象的要容易得多!

<div id="{{ curService.grid }}"></div>

关于javascript - 使用 AngularJS ng-repeat 元素属性作为 div id,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35462874/

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