0
HTML代碼角隔離範圍在鏈路功能工作
<grid-table table-rows="educationBoards"></grid-table>
角控制器
angular.controller('gridController', function($scope){
$scope.educationBoards = [{eid = 1, ename = "dhaka"}];
})
角指令
angular.directive('gridTable', functions(){
restrict: 'E',
scope: {rows: '=tableRows'};
link: function(scope){
console.log(scope.rows); // shows undefined
}
})
指令分離範圍中鏈接功能不工作。爲什麼?
我看到它在小提琴的作品。但它不適用於我的指令。這裏是github鏈接:https://github.com/MahediSabuj/University/blob/master/Application/University.Web/Scripts/Application/Directives/GridTable.js – 2014-12-07 18:47:01
看看你是否可以隔離它失去它的地方。 – deitch 2014-12-07 19:21:51