我试着这样做:
$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
的元素答案 0 :(得分:1)
请试试这个
$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;
};