أحدث البرامج التعليمية وتطوير الشبكة
 

AngularJS نانوغرام التبديل التوجيه


مثال

عرض قسم من HTML، إلا إذا كان يتطابق مع قيمة معينة:

<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>
انها محاولة لنفسك »

تعريف واستخدام

و ng-switch التوجيه يتيح لك إخفاء العناصر / عرض HTML حسب تعبير.

العناصر التابعة لل ng-switch-when سيتم عرض التوجيه إذا كان يحصل على المباراة، وإلا فإن العنصر، وانها سوف يتم إزالتها الأطفال.

يمكنك أيضا تحديد القسم الافتراضي، باستخدام ng-switch-default التوجيه، لإظهار القسم إذا غير من الأقسام الأخرى الحصول على المباراة.


بناء الجملة

< 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 >

بدعم من جميع عناصر HTML.


قيم معلمة

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