gpt4 book ai didi

AngularJS ng-show 具有多个条件的三元条件

转载 作者:行者123 更新时间:2023-12-04 01:39:45 26 4
gpt4 key购买 nike

我正在开发一个复杂的应用程序,如果从后端发送的 ID 满足特定条件,我需要禁用链接。
我现在正在使用它,但不确定它是否正确:

ng-show="parentheaderData.casid === '807' || '806' || '808' ?false:true"

这看起来对吗?

最佳答案

你为什么不把这个逻辑移到 Controller 上,这样你就有了

html :

ng-show="showParentheader(parentheaderData.casid)"

Controller :
 $scope.showParentheader = function(id) {
return ! (id === '807' || id ==='806' || id ==='808');
}

关于AngularJS ng-show 具有多个条件的三元条件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25689151/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com