我试图创建一个表指令,它允许创建带有添加、删除和编辑选项的表。
HTML
// User table
<atable config="userTable"></atable>
// Age table
<atable config="ageTable"></atable>
JS(控制器)
var userData = [{
un: 'user1',
pwd: 'password',
ph: '500000000',
id: 2
},..];
$scope.userTable = {
cols: ['Username', 'Password', 'Contact'],
rows: userData,
deleteRow: true,
deleteHandler: function (id) {
console.log(id);
for (var i = 0; i < userData.length; i++) {
if (userData[i].id == id) {
userData.splice(i, 1);
break;
}
}
},..
};
同样,我为第二个表创建了 ageData 和 ageTable 配置。
JS(指令)
.directive("atable", function () {
return {
restrict: "E",
scope: {
config: '='
},
template: 'Look at fiddle'
controller: function ($scope) {
$scope.deleteRow = function (row) {
$scope.config.currEditRow = angular.copy(row);
}
...
}
}
})
这是小提琴。
删除行适用于第一个表,但不适用于第二个实例。我认为在尝试删除 ageTable 中的某些内容时,正在调用 userTable 的 deleteHandler。我可以猜测这是范围问题,但无法弄清楚。