码迷,mamicode.com
首页 > Web开发 > 详细

AngularJS-指令command

时间:2017-03-15 22:22:31      阅读:276      评论:0      收藏:0      [点我收藏+]

标签:技术   dir   ever   url   name   amp   rest   多个   everyone   

directive:

匹配模式restrict:‘AEMC‘默认为A

template

templateUrl

templateCache:把模板缓存起来,共多个指令使用

var myModule = angular.module("MyModule", []);

//注射器加载完所有模块时,此方法执行一次
myModule.run(function($templateCache){
    $templateCache.put("hello.html","<div>Hello everyone!!!!!!</div>");
});

myModule.directive("hello", function($templateCache) {
    return {
        restrict: ‘AECM‘,
        template: $templateCache.get("hello.html"),
        replace: true
    }
});

 

replace:

transclude:指令互相嵌套

独立scope

scope:{}

var myModule = angular.module("MyModule", []);
myModule.directive("hello", function() {
    return {
        restrict: ‘AE‘,
        scope:{},
        template: ‘<div><input type="text" ng-model="userName"/>{{userName}}</div>‘,
        replace: true
    }
});

绑定策略

技术分享

 内置指令63:

技术分享

技术分享

 

compile&&link:

加载angular.js,找到ng-app指令,确定应用边界

遍历DOM,找到所有指令

根据指令代码的template,replace,transclue转换DOM结构

连接阶段

对每一条指令运行link函数

link函数一般用来操作DOM、绑定事件监听器。

 

AngularJS-指令command

标签:技术   dir   ever   url   name   amp   rest   多个   everyone   

原文地址:http://www.cnblogs.com/Nyan-Workflow-FC/p/6556799.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!