AngularJS中有關Directive的彙總

来源:http://www.cnblogs.com/darrenji/archive/2016/01/22/5151411.html
-Advertisement-
Play Games

本篇通過幾個例子對AngularJS中的Directive進行彙總。例子1,單向綁定和雙向綁定 ==單向綁定{{contacts.length}}the first name is {{contacts[0].firstname}}{{contacts[0].f...


 

本篇通過幾個例子對AngularJS中的Directive進行彙總。

例子1,單向綁定和雙向綁定

 

<html ng-app="myApp">
  <head>
    <script src="angualr.js"></script>
    <script>
        (function(){
            var name = "myApp";
            requried = [];
            myApp = null;
            
            myApp = angualr.module(name, requires);
            
            myApp.controller("AppCtrl", functioin($scope){
                $scope.contacts = [
                    {firstname: "", lastname: "'},
                    ...
                ];
                
                $scope.addContact = function(){
                    $scope.contacts.push({firstname:"", lastname:"", isEnabled:true});
                }
                
                //切換視圖
                $scope.viewFile = function(){
                     if($scope.viewState){
                        return "contact_list.html";
                     } else{
                        return "contact_table.html";
                     }
                }
                
                $scope.onPartialLoad = function(){
                    console.log($scope.viewFile() + " loaded");
                }
            })
        }());
    </script>
  </head>
  <body ng-controller="AppCtrl">
    
  </body>
</html>

 

==單向綁定

 

{{contacts.length}}
<div ng-bind="contacts.length"></div>
<div ng-bind-template="">the first name is {{contacts[0].firstname}}</div>
{{contacts[0].firstname}}
{{::contacts.length}} 只展示一次數組長度,當數組長度有改變,這裡不變
{{ 2 + 3 }}
{{ Math.min(4, 2)}}
<button ng-click="addContact()">添加</button>
<div ng-non-bindable>this is {{hello }}</div> 這裡的{{hello}}會顯示出來

...
<tr ng-repeat="contact in contacts" ng-class="$odd ? 'odd':'even'">
    <td>{{$index + 1}}</td>
    <td>{{contact.firtname}}</td>
    <td>{{contact.lastname}}</td>
    <td>{{contact.isEnabled}}</td>
    <td>{{$first}}</td>
    <td>{{$last}}</td>
    <td>{{$middle}}</td>
</tr>
...

<ng-include src="'contact_table.html'"></ng-include>


//切換視圖
<input type="checkbox" ng-model="viewState">切換視圖
<ng-include src="viewFile()" onload="onPartialLoad()"></ng-include>

 

==使用Directive的幾種方式

<div ng-bind="contacts.length"></div>
<div class="ng-bind:contacts.length"></div>
<ng-include></ng-include>

==雙向綁定

<input type="text" ng-model="contacts[0].firstname"/>

例子2,ng-switch

 

<html ng-app="myApp">
    <head>
        angular.js
        <script>    
            (function(){
                var name = "myApp[]",
                requires = [],
                myApp = null;
                
                myApp = angular.module(name, requires);
                myApp.controller("AppCtrl", function($scope){
                    $scope.data = {};
                });
            }());
        </script>
    </head>
    <body ng-controller="AppCtrl">
    </body>
</html>

 

頁面部分

 

<div ng-repeat="channel in ['None', 'Tv', 'kitty']"  ng-cloak>
    <input type="radio" name ="leisure" value="{{channel}}" ng-model="data.whichChannel" ng-checked="$first" />{{channel}}
</div>

<div ng-switch on="data.whichChannel">
    <div ng-switch-default>this is none</div>
    <div ng-switch-when="Tv">this is tv</div>
    <div ng-switch-when="kitty">this is kitty</div>
</div>

 

以上,

● ng-checked 勾選
● ng-switch切換顯示其中的內容
● 當點擊Tv相關的這個RadioButton,把Tv這個值賦值給了data對象的whichChannel欄位,whichChannel欄位值得改變會告訴ng-swich所在的div,其子元素的ng-switch-when值如果和當前的whichChannel欄位值匹配,就顯示
● ng-cloak 避免綁定數據的時候頁面閃爍

例子3,顯示、隱藏、移除元素,ng-show, ng-hide, ng-if

$scope.toggleNewContact = false;
$scope.shwoNewContactForm = function(){
    $scope.toggleNewContact = true;
}


<button ng-click="showNewContactForm()">Add New Contact</button>
<form ng-show="toggleNewContact">
    <button ng-click="toggleNewContact = false">Cancel</button>
</form>


<tr ng-repeat="contact in contacts" ng-if="contact.isEnabled">
</tr>

 

例子4,勾選,只讀,禁用,鏈接

 

$scope.checkMe = true;
$scope.url = "http://google.com";
$scope.imgSrc = "hi.jpeg";

//勾選
<input type="checkbox" ng-checked="{{checkME}}" /> check me

//禁用按鈕
<button ng-disabled="{{checkMe}}">Click me</button>

//只讀
<input type="text" value="he" ng-readonly="{{checkMe}}" />

//鏈接
<a href="{{url}}">go</a>
<a ng-href="{{url}}">go</a> 推薦使用

//圖片
<img ng-src="{{imgSrc}}"/>

 

例子5,ng-style

 

<button ng-click="styles={'color':'red'}">set color</button>
<button ng-click="styles={'font-weight':'bold'}">bold</button>
<button ng-click="styles={'font-style':'italic'}>italic></button>
<p ng-style="styles">hello</p>

 

例子6,ng-class

 

.strike{
    text-decoration:line-through;
}

.bold{
    font-weight:bold;
}

.red{
    color:red;
}

==把一個值賦值給ng-class

//文本框和controller中的style變數綁定起來
<input type="text" ng-model="style" />
<p ng-class="style">he</p>

==把一個對象賦值給ng-class

<input type="checkbox" ng-model="deleted" /> deleted
<input tyep="checkbox" ng-model="important" /> important
<input type="checkbox" ng-model="error"> error
<p ng-class="{strike:deleted, bold:important, red:error}">hello</p>


==把一個數組賦值給ng-class

//運用所有的class
<p ng-class="['strike','bold','red']">hi</p>

另外,

<tr ng-repeat="contact in contacts" ng-class-odd="'odd'" ng-class-even="'even'"></tr>

例子7, 事件

ng-click, ng-mousedown, ng-mouseenter, ng-mouseleave, ng-mouseup

例子8,過濾


==對數組元素過濾

 

$scope.courses = [
    {name:"", category:"", timeline:20, price:25},
    ...
];

$scope.getTargetDate = function(days){
    var now = new Date();
    return now.setDate(now.getDate() + days);
}

<tr ng-repeat="course in courses">
    <td>{{$index + 1}}</td>
    <td>{{course.name | upplercase}}</td>
    <td>{{course.category | lowercase }}</td>
    <td>{{getTargetDate(course.timeline) | date: 'dd MMM yy' | uppercase }}</td>
    <td>{{course.price | currency: "¥" }}</td>
    <td>{{course | json}}</td>
</tr>

 

==對整個數組過濾

 

$scope.limitVal = 10;
$scope.lessThan25 = function(item){
    return item.price < 25;
}

{{courses.length}}
<button ng-click="limitVal = 5">5</button>
<button ng-click="limitVl = 10">10</button>
//<input type="text" ng-model="searchStr" />
//<input type="text" ng-model="name" />
//<input type="text" ng-model="category"/>

//<tr ng-repeat = "course in courses | limitTo: limitVal | filter: searchStr">
//<tr ng-repeat = "course in courses | limitTo: limitVal | filter: {name: name, category:category}">
//<tr ng-repeat = "course in courses | limitTo: limitVal | filter: lessThan25">
//<tr ng-repeat = "course in courses | limitTo: limitVal | orderBy: '-price'">
<tr ng-repeat = "course in courses | limitTo: limitVal | orderBy: ['name','-price']">
    <td>{{$index + 1}}</td>
    <td>{{course.name}}</td>
    <td>{{course.category}}</td>
    <td>{{course.timeline}}</td>
    <td>{{course.price}}</td>
</tr>


所以filter能接受的包括字元串、對象和函數。

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • Form Plugin API 里提供了很多有用的方法可以讓你輕鬆的處理表單里的數據和表單的提交過程。測試環境:部署到Tomcat中的web項目。本文演示的是:jQuery form插件的使用--ajaxForm()和ajaxSubmit()的可選參數項對象ajaxForm()和ajaxSubmit...
  • React無疑是今年最火的前端框架,github上的star直逼30,000,基於React的React Native的star也直逼20,000。有了React,組件化似乎不再步履蹣跚,有了React Native,前端的邊界似乎廣闊無邊。而Webpack憑藉它非同步載入和可分離打包等優秀的特性,走...
  • 本篇關註AngularJS中的控制器繼承,瞭解屬性和方法是如何被繼承的。嵌套控制器中屬性是如何被繼承的?==屬性值是字元串myApp.controller("ParentCtrl", function($scope){ $scope.name = "darren";})myApp.contro...
  • 在AngularJS中,每一個controller都有對應的Scope,而Scope間有時候需要通訊。比如有如下的一個controller嵌套: ... {{$index + 1}} {{product.name}} ...
  • 廢話不說,直入正題。Backbone.js是什麼Backbone.js提供了一套web開發框架,通過Models進行key-value綁定及自定義事件處理,通過Collections提供一套豐富的API用於枚舉功能,通過Views來進行事件處理及現有的Application通過RESTful JSO...
  • 一、校驗數字的表達式 1 數字:^[0-9]*$ 2 n位的數字:^\d{n}$ 3 至少n位的數字:^\d{n,}$ 4 m-n位的數字:^\d{m,n}$ 5 零和非零開頭的數字:^(0|[1-9][0-9]*)$ 6 非零開頭的最多帶兩位小數的數字:^([1-9][0-9]*)+(.[0-9]...
  • 前一段時間在網站上學習互聯網,無意間發現開發app也可以很簡單,雖然功能上可能還不理想,但是對於我這樣剛入行的程式員已經足夠了.是一個叫愛碼哥的開發平臺,應用了第三代的移動中間件開發app.採用xml和js的開發方式,可能有的人還不知道xml和js是什麼,我這裡簡單介紹一下,xml就是可擴展的標記語...
  • 先說一說兩者之間的異同 兩者都可以引用外部CSS的方式,現在主流瀏覽器兩者都支持(ps:@import是CSS2.1提出的),但是存在一定的區別:1.link是XHTML標簽,除了載入CSS外,還可以定義其他事務;@import屬於CSS範疇,只能載入CSS也只能在css代碼裡面使用。 li...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...