在HTML中设置类似于ng-init的局部变量

时间:2015-07-14 18:39:58

标签: javascript html angularjs angular-ui-tree

我在angularjs中使用ui-tree。对于绑定,我使用了一个给我子元素的方法:

if (objects[0] is MyType)
{
    // do stuff with ((MyType)objects[0]).Asset
}

使用grep -qi 'Service has started.\|error' <(tail -f "/opt/app/log/daemon.log") 我初始化children数组以供进一步使用。此代码有效,但数据更改时不会重新评估<div ui-tree="treeOptions"> <ol ng-init="children=getChildren(website.id, '0')" ng-model="children" ui-tree-nodes> <li ng-repeat="node in children" data-collapsed="node.isCollapsed" ui-tree-node ng-include="'nodeTemplate.html'" ng-cloak></li> </ol> </div> 。因此无法动态添加新项目。有没有办法在HTML中设置类似于ng-init的自动刷新的局部变量?

0 个答案:

没有答案