gpt4 book ai didi

javascript - 为什么 ng-repeat 在使用 angular 的指令中不起作用?

转载 作者:行者123 更新时间:2023-11-29 21:37:50 25 4
gpt4 key购买 nike

我正在尝试在 mu 页面中使用指令。我正在尝试将数据从 Controller 发送到指令。我正在尝试使用 ng-repeat 显示数据。

这是我正在应用 ng-repeat 。

  <div class="container">
<!--Row with two equal columns-->
<div class="row " ng-repeat='d in data'>
<div class="col-sm-3">
<div class="demo-content">{{d.Location}}</div>
</div>
<div class="col-md-7">
<div class="demo-content bg-alt description-ellipse">{{d.description}}</div>
</div>
<div class="col-md-1">
<div class="demo-content bg-alt">
<button type="button" class="btn btn-default view-now-button">VIEW NOW</button>
</div>
</div>
</div>
</div>

我像这样制定了一个指令

.directive('listComponent', function() {

return {
restrict: 'E',
scope: {
data:'='
},
templateUrl: 'list.html',
link: function(s, e, a) {

}
}

})

我正在发送这样的数据

data:'=' 从这里<list-component data='h.data'></list-component>

这是我的代码 http://plnkr.co/edit/Q0GQC2Pik7m25HxQIW8H?p=preview

最佳答案

应该是:

<div class="row " ng-repeat='d in data.jobs'>

list.html

或者,根据评论:

<list-component data='h.data.jobs'></list-component>

已更新 Plunker

关于javascript - 为什么 ng-repeat 在使用 angular 的指令中不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34353885/

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