如何获取当前节点 Angular UI 树的父节点?

How to get parent of current node Angular UI Tree?

我试过这样做:

$scope.showCloneIcon = function(scope)
        {

            if(scope.$parentNodeScope !== null){

                var parent_value = scope.$parentNodeScope.$modelValue.type_value;

                if(parent_value === 'array_objects'){
                    return true;
                }
            }

            return true;
        };

因此,它不会在我使用 ng-show 的地方隐藏元素

请试试这个

$scope.showCloneIcon = function(scope)
{
  if(scope.$parent !== null)
  {
    var parent_value = scope.$parent.$modelValue.type_value;
    if(parent_value === 'array_objects')
    {
      return true;
    }
  }
  return true;
};