为 angular-ui-tree 中的树添加标签
Adding labels to the trees in angular-ui-tree
有没有办法向 angular-ui-树添加标签或分离树?
我有一个 JSON 文件,其中包含我正在向 $scope.tree
提供的问题以显示在我的前端。我想有一个单独的树来获得这些问题的答案。
这可能吗?
我附上了一张我正在努力完成的图片。
两者使用不同的模型:
对于问题,使用:
<label for="categoryName">{{node.nodes.length}} {{$index + 1 + "-"}} {{node.title}}</label>
对于答案,请使用:
<input type="text" class="form-control" placeholder="Answer" id="categoryName" ng-model="node.answer">
有没有办法向 angular-ui-树添加标签或分离树?
我有一个 JSON 文件,其中包含我正在向 $scope.tree
提供的问题以显示在我的前端。我想有一个单独的树来获得这些问题的答案。
这可能吗?
我附上了一张我正在努力完成的图片。
两者使用不同的模型:
对于问题,使用:
<label for="categoryName">{{node.nodes.length}} {{$index + 1 + "-"}} {{node.title}}</label>
对于答案,请使用:
<input type="text" class="form-control" placeholder="Answer" id="categoryName" ng-model="node.answer">