当包含在String中时,Ng-if不起作用。我怎样才能让它发挥作用?

时间:2016-09-30 05:44:27

标签: javascript angularjs angular-ng-if angularjs-ng-if

我已经声明了一个名为import java.util.regex.*; public class HelloWorld { public static void main(String[] args) { System.out.println(filterOut("animal<fizz,cat>")); System.out.println(filterOut("animAl<dog,blue>")); System.out.println(filterOut("animal<dog,sheep>")); System.out.println(filterOut("animal<dog, blue>")); System.out.println(filterOut("animal<dog,blue>")); System.out.println(filterOut("animal<cat,red>")); System.out.println(filterOut("animal<sheep,blue>")); } public static boolean filterOut(String str) { Matcher m = Pattern.compile("animal<(dog|cat|sheep),(red|blue)>").matcher(str); if (m.find()) return true; else return false; } } 的变量,我想用它来显示或隐藏弹出窗口中的按钮。用户只有在已经过身份验证的情况下才能看到该按钮。

我尝试使用 h5 部分中的变量authenticated,这里有效。我认为这只是数据内容字符串中的格式,因为当我检查页面时,它不使用ng-if,但它在源代码中显示它。

ng-if

0 个答案:

没有答案