2016-07-28 68 views

回答

1

以及ng-show指令需要一個表達式,您不能像您那樣使用它,

ngShow指令根據提供給ngShow屬性的表達式,顯示或隱藏給定的HTML元素 。

我不知道你的理由是將其定義爲一個屬性是什麼,但你可以做的是創造一個指令

像這樣

myApp.directive('showsum ', function() { 
    return { 
     restrict: 'A', // restrict to an attribute so we can use it as such 
     link: function(scope, element, attrs) { 
      scope.showsum = true; // set the show sum expression so we can access it in the scope 
     } 
    } 
}) 

例如:

http://plnkr.co/edit/mE5LrSMWdIwPRazEdD3b?p=preview

它將爲示波器創建一個showsum屬性,並且您可以通過它執行我們想要的操作

相關問題