3
我很難從我的控制器範圍傳遞到自定義指令的數據。 ng-repeat給了我正確數量的元素,它只是不加載模板或其他東西。自定義指令的角度ng重複
angular.module('myApp')
.controller('WorkflowController', ['$scope', function($scope){
$scope.columns = ['Requested Quote', 'Quote Sent', 'Deposit Paid'];
}])
.directive('kanban-column', function() {
return {
restrict: 'E',
replace: true,
scope: {column: '='},
templateUrl: 'directives/kanban-column/template.html'
}
})
// template.html:
<h4>{{column}}}}</h4>
有了這個在我的index.html:
<div class='kanban-board'>
<kanban-column data-ng-repeat="column in columns" data-column="column">
</kanban-column>
</div>
代碼簡化了一下,不過您甚至逐字上述不起作用。我可以忽略一些東西嗎
行不通的意思?你確定數據從那裏返回? –
template.html中的內容是什麼? –
template.html只是
{{列}}
–