Najnowsze tutoriale tworzenie stron internetowych
 

AngularJS ng-switch dyrektywa


Przykład

Pokaż fragment HTML, tylko wtedy, gdy jest on zgodny pewną wartość:

<div ng-switch="myVar">
  <div ng-switch-when="dogs">
    <h1>Dogs</h1>
    <p>Welcome to a world of dogs.</p>
  </div>
  <div ng-switch-when="tuts">
    <h1>Tutorials</h1>
    <p>Learn from examples.</p>
  </div>
  <div ng-switch-when="cars">
    <h1>Cars</h1>
    <p>Read about cars.</p>
  </div>
  <div ng-switch-default>
    <h1>Switch</h1>
    <p>Select topic from the dropdown, to switch the content of this DIV.</p>
  </div>
</div>
Spróbuj sam "

Definicja i Wykorzystanie

ng-switch Dyrektywa pozwala ukryć elementy / show HTML w zależności od wyrażenia.

Elementy potomne z ng-switch-when dyrektywa zostanie wyświetlona, jeśli robi się mecz, w przeciwnym razie element, i to dzieci będą usuwane.

Można również zdefiniować sekcję domyślną, używając ng-switch-default dyrektywę, aby wyświetlić sekcję, jeśli nie z innych sekcjach się mecz.


Składnia

< element ng-switch=" expression ">
  < element ng-switch-when=" value "></ element >
  < element ng-switch-when=" value "></ element >
  < element ng-switch-when=" value "></ element >
  < element ng-switch-default></ element >
</ element >

Obsługiwane przez wszystkich elementów HTML.


wartości parametrów

Value Description
expression An expression that will remove elements with no match, and display elements with a match.