1
我使用角treeview
使用AngularJS構建樹。我可以在我的應用程序中添加新的子節點以及新的節點。角樹視圖刪除選定的節點
- 我能夠添加新節點以及孩子選擇的節點
- 我能夠編輯選擇的節點以及兒童
下面的jsfiddle鏈接有添加/編輯節點。
https://jsfiddle.net/eu81273/48cafgsu/
我需要刪除選定的節點。
請幫我這個。提前致謝。
我使用角treeview
使用AngularJS構建樹。我可以在我的應用程序中添加新的子節點以及新的節點。角樹視圖刪除選定的節點
下面的jsfiddle鏈接有添加/編輯節點。
https://jsfiddle.net/eu81273/48cafgsu/
我需要刪除選定的節點。
請幫我這個。提前致謝。
你好,我更新了小提琴能夠刪除一個節點
https://jsfiddle.net/48cafgsu/56/
Array.prototype.remove = function() {
var what, a = arguments,
L = a.length,
ax;
while (L && this.length) {
what = a[--L];
while ((ax = this.indexOf(what)) != -1) {
this.splice(ax, 1);
}
}
return this;
}
var getSubMenuItem = function(subMenuItems, node) {
console.log(subMenuItems)
console.log(node)
var current_node = subMenuItems;
if (subMenuItems) {
for (var i = 0; i < subMenuItems.length; i++) {
if (subMenuItems[i].id == node.id) {
current_node = current_node.remove(node);
console.log('removed')
// subMenuItems =current_node
return
}
if(subMenuItems[i].children.length>0){
getSubMenuItem(subMenuItems[i].children,node)
}
}
}
};