Angular.js進階

来源:https://www.cnblogs.com/forever-xuehf/archive/2018/05/29/9108093.html
-Advertisement-
Play Games

1.常用指令 2.angular與element(1) angular與element(2) 3.自定義HTML組件 4.directive與controller ...


1.常用指令

<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title></title>
    <link rel="stylesheet" href="css/foundation.min.css">
    <style>
        .tx{
            width: 50px;
            height: 50px;
            margin-bottom: 10px;
            margin-left: 80px;
        }
    </style>
</head>
<!--ng-bind,{{}},ng-model,ng-show/hide,ng-if,ng-checked,ng-src-->
<!--ng-href,ng-class,ng-selected,ng-submit,ng-disable,ng-change-->
<body style="padding:10px" ng-app="app">
<div ng-controller="UserCtrl">
    <form name="f" ng-submit="register(user)">
        <fieldset>
            <legend>基本信息</legend>
            <img ng-src="{{user.icon}}"
                 ng-class="{'tx':user.showicon}"/>
                 <!--ng-hide="user.isShowImg"-->
                 <!--ng-show="user.isShowImg"-->
                 <!--ng-if="user.isShowImg"-->
            <div>
                <input type="text" ng-model="user.uname" placeholder="用戶名" required />
                <input type="password" placeholder="密碼"/>
                職位:<select>
                    <option value="">--請選擇--</option>
                    <option value="1" ng-selected="user.zw=='1'">Java工程師</option>
                    <option value="2" ng-selected="user.zw=='2'">web工程師</option>
                </select>
                性別:<input type="radio"
                       ng-checked="user.sex=='1'"
                       name="sex">&nbsp;男&nbsp;
                <input type="radio"
                       ng-checked="user.sex=='0'"
                       name="sex">&nbsp;女&nbsp;
            </div>
        </fieldset>
        <fieldset>
            <legend>愛好</legend>
            <div>
                <input type="checkbox" ng-checked="isChecked(1)" name="愛好">&nbsp;籃球&nbsp;
                <input type="checkbox" ng-checked="isChecked(2)" name="愛好">&nbsp;足球&nbsp;
                <input type="checkbox" ng-checked="isChecked(3)" name="愛好">&nbsp;排球&nbsp;
            </div>
        </fieldset>
        <button type="submit"
                ng-disabled="f.$invalid"
                class="button expand">提交</button>
    </form>
</div>
</body>
<script src="js/angular.min.js"></script>
<script>
    angular.module('app',[])
    .controller('UserCtrl',function($scope){
        $scope.user={
            isShowImg:true,
            showicon:true,
            icon:"images/demo.jpg",
            uname:"",
            pwd:"",
            zw:"2",
            sex:"1",
            aihao:[1,3]
        };
        $scope.isChecked=function(n){
            var isok=false;
            for(var i=0;i<$scope.user.aihao.length;i++){
                if(n==$scope.user.aihao[i]){
                    isok=true;
                    break;
                }
            }
            return isok;
        };
        $scope.register=function(u){
            console.log(u);
        }
    });

</script>
</html>

2.angular與element(1)

<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title></title>
    <link rel="stylesheet" href="http://cdn.static.runoob.com/libs/foundation/5.5.3/css/foundation.min.css">
</head>
<body>
<div ng-app="app">
    <div enter leave>我在這</div>
</div>
</body>
<script src="js/angular.min.js"></script>
<script>
var app=angular.module('app',[]);
app.directive('enter',function(){
    return function(scope,element,attrs){
        element.bind('mouseenter',function(){
            element.addClass('alert-box');
        })
    }
});
app.directive('leave',function(){
    return function(scope,element,attrs){
        element.bind('mouseleave',function(){
            element.removeClass('alert-box');
        })
    }
});
</script>
</html>

angular與element(2)

<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title></title>
    <link rel="stylesheet" href="css/foundation.min.css">
</head>
<body>
<div ng-app="app">
    <hello></hello>
</div>
</body>
<script src="js/angular.min.js"></script>
<script>
var app=angular.module('app',[]);
app.directive('hello',function(){
    return {
        restrict:"E",
        template:'<div><input ng-model="txt"></div><div>{{txt}}</div>',
        link:function(scope,element){
            scope.$watch('txt',function(newVal){//監聽
                if(newVal==='error'){
                    element.addClass('alert-box alert')
                }
            })
        }
    }
});
</script>
</html>

3.自定義HTML組件

<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title></title>
    <link rel="stylesheet" href="css/bootstrap.min.css"/>
</head>
<body>
<p>p:restrict含義(A屬性,E標簽元素(結合template插入),C類名)與應用,replace使用,template使用</p>
<div ng-app="app">
    <div hello class="leiming"></div>
</div>
</body>
<script src="js/angular.min.js"></script>
<script>
var app=angular.module('app',[]);
    app.directive('hello',function(){
//        return {
//            restrict:'E',//自定義HTML標簽,在dom中顯示標簽名為hello
//            replace:true,//預設false,替換掉自定義的directive名稱,即把hello替換為div
//            template:'<div>hello Angularjs</div>'
//        };
        return {
            restrict:'A',
            link:function(){
                alert("我是屬性")
            }
        };
    });
    app.directive('leiming',function(){
        return {
            restrict:'C',
            link:function(){
                alert("我是類名")
            }
        };
    });
</script>
</html>

4.directive與controller

<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title></title>
</head>
<body>
    <!--<p>controller屬性使用,link使用,directive中調用controller的方法</p>-->
    <div ng-app="app">
        <!--<div ng-controller="AppCtrl">-->
            <!--<div enter="loadMoreData()">載入數據</div>-->
        <!--</div>-->
        <food apple orange banana>所有食物</food>
        <food apple banana>所有食物</food>
    </div>
</body>
<script src="js/angular.min.js"></script>
<script>
var app=angular.module('app',[]);
//app.controller('AppCtrl',function($scope){
//    $scope.loadMoreData=function(){
//        alert("正在載入數據...")
//    };
//    $scope.delData=function(){
//        alert("正在刪除數據...")
//    }
//});
//app.directive('enter',function(){
//    return function(scope,element,attrs){
//        element.bind('mouseenter',function(){
//            //scope.loadMoreData();
//            //scope.$apply('loadMoreData()');
//            scope.$apply(attrs.enter);
//        })
//    }
//});
app.directive('food',function(){
    return {
        restrict:'E',
        scope:{},
        controller:function($scope){
            $scope.foods=[];
            this.addApple=function(){
                $scope.foods.push('Apple');
            };
            this.addOrange=function(){
                $scope.foods.push('Orange');
            };
            this.addBanana=function(){
                $scope.foods.push('Banana');
            }
        },
        link:function(scope,element,attrs){
            element.bind('mouseenter',function(){
                console.log(scope.foods);
            });
        }
    }
});
app.directive('apple',function(){
    return {
        require:'food',
        link:function(scope,element,attrs,foodCtrl){
            foodCtrl.addApple();
        }
    }
});
app.directive('orange',function(){
    return {
        require:'food',
        link:function(scope,element,attrs,foodCtrl){
            foodCtrl.addOrange();
        }
    }
});
app.directive('banana',function(){
    return {
        require:'food',
        link:function(scope,element,attrs,foodCtrl){
            foodCtrl.addBanana();
        }
    }
});
</script>
</html>

 


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

-Advertisement-
Play Games
更多相關文章
  • 本文將介紹如何分組數據,以便能彙總表內容的子集,這涉及兩個新SELECT語句子句,分別是 GROUP BY 子句和 HAVING 子句。 1.1 創建分組 分組是在SELECT語句的GROUP BY子句中建立的。 輸入: 輸出: vend_id | num_prods | 1001 | 3 1002 ...
  • Apple在Xcode4.2中推出用於iOS應用故事版概念。 標識:Identity(標識)檢查器最常用於為用戶界面元素或者控制器分配一個自定義類。 屬性:Attributes(屬性)檢查器在微調用戶界面元素的行為時頻繁使用。註意,並不是UI元素的所有屬性都可以在這裡配置,有一些只能通過代碼進行。 ...
  • 渲染性能 Android UI的工作分兩階段: 1.在UI線程Record View#draw 2.在RenderThread線程DrawFrame(RenderThread:使用GPU資源的線程) 第一階段隨著View的invalidated在draw(Canvas)中進行 第二階段native ...
  • 一、編譯時檢測 1. 判斷 SDK 是否是某個版本或更高版本 2.判斷當前需要支持的最低版本 ​ 這個巨集的取值也就是 這個值,也就是你的工程支持的最低系統版本。但是最少是 __IPHONE_2_0。 3.判斷最高可支持的系統版本 這個巨集的值等於當前 SDK 定義的最高版本,比如 \__IPHONE_ ...
  • 正則表達式規則 一、普通字元 字母、數字、漢字、下劃線、以及後邊章節中沒有特殊定義的標點符號,都是"普通字元"。表達式中的普通字元,在匹配一個字元串的時候,匹配與之相同的一個字元。 舉例: 表達式 "o",在匹配字元串 "haorooms" 時,匹配結果是:成功;匹配到的內容是:"o";匹配到的位置 ...
  • 本文主要講解javascript 的正則表達式中的分組匹配與前瞻匹配的,需要對正則的有基本認識,本人一直對兩種匹配模棱不清。所以在這裡總結一下,如有不對,還望大神指點。 1.分組匹配: 1.1捕獲性分組匹配 () 2.2非捕獲性分組匹配 (?:)2前瞻匹配: 2.1正向前瞻匹配: (?=表達式) 後 ...
  • 1.1 html概述和基本結構 html概述 HTML是 HyperText Mark-up Language 的首字母簡寫,意思是超文本標記語言,超文本指的是超鏈接,標記指的是標簽,是一種用來製作網頁的語言,這種語言由一個個的標簽組成,用這種語言製作的文件保存的是一個文本文件,文件的擴展名為htm ...
  • v-model 是 vue.js 提供的語法糖,根據不同的表單控制項監聽不同的事件,實現對錶單控制項的數據雙向綁定。 當控制項是 <input> 輸入框時,v-model 監聽其 input 事件。 如下所示,這兩種寫法有什麼區別嗎? 輸入中文格式化問題 表單輸入常見需求:對<input>控制項輸入的內容進 ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...