Angular17 Angular自定义指令

1 什么是HTML

  HTML文档就是一个纯文本文件,该文件包含了HTML元素、CSS样式以及JavaScript代码;HTML元素是由标签呈现,浏览器会为每个标签创建带有属性的DOM对象,浏览器通过渲染这些DOM节点来呈现内容,用户在浏览器中看到的内容就是浏览器渲染DOM对象后的结果。

2 指令的分类

  组件、属性指令、结构性指令

  具体的知识点请参见《Angular2揭秘》

3 指定义指令常用到的一些常量

  3.1 Directive

    用于装饰控制器类来指明该控制器类是一个自定义指令控制器类

  3.2 ElementRef

    作为DOM对象的引用使用,通过构造器进行依赖注入,它的实例代表标注有自定义指令那个元素的DOM对象;每个标注了自定义指令的元素都会自动拥有一个ElementRef对象来作为该元素DOM对象的引用(前提:在自定义指令的控制器中依赖注入了ElementRef)

  3.3 Render2

    Render2的实例是用来操作DOM节点的,因为Angular不推荐直接操作DOM节点;Render2是从Angular4才开始支持的,之前的版本是使用的Render;每个标注有自定义指令的元素都会拥有一个Render2实例来操作该元素的DOM属性(前提:在自定义指令的控制器中依赖注入了Render2)

  3.4 HostListener

    用于装饰事件触发方法的注解

4 自定义属性指令

  一个自定义的属性指令需要一个有@Directive装饰器进行装饰的控制器类

import { Directive } from ‘@angular/core‘;

@Directive({
  selector: ‘[appDirectiveTest02]‘
})
export class DirectiveTest02Directive {

  constructor() { }

}

  4.1 实现自定义属性指令

    4.1.1 创建自定义属性指令控制类

      技巧01:创建一个模块来专门放自定义指令

ng g d directive/test/directive-test02 --spec=false --module=directive

    4.1.2 在控制器类中依赖注入ElementRef  

  constructor(
    private el: ElementRef
  ) {}

    4.1.3 通过ElementRef实例改变标有自定义指令元素对应的DOM对象的背景颜色 

  ngOnInit() {
    this.el.nativeElement.style.backgroundColor = ‘skyblue‘;
  }

    4.1.3 在自定义指令模块中指定exports

      

import { NgModule } from ‘@angular/core‘;
import { CommonModule } from ‘@angular/common‘;
import { DirectiveTest01Directive } from ‘./test/directive-test01.directive‘;
import { SharedModule } from ‘../shared/shared.module‘;
import { DirectiveTest02Directive } from ‘./test/directive-test02.directive‘;

@NgModule({
  imports: [
    CommonModule
  ],
  declarations: [
    DirectiveTest01Directive,
    DirectiveTest02Directive],
  exports: [
    DirectiveTest01Directive,
    DirectiveTest02Directive
  ]
})

export class DirectiveModule { }

    4.1.4 将自定义指令模块导入到需要用到指定指令的组件所在的模块中

      技巧01:自定义指令一般会被多次用到,所以一般会将自定义指令模块导入到共享模块在从共享模块导出,这样其它模块只需要导入共享模块就可以啦

      

import { NgModule } from ‘@angular/core‘;
import { CommonModule } from ‘@angular/common‘;
import { RouterModule } from ‘@angular/router‘;
import {
  MdToolbarModule,
  MdSidenavModule,
  MdIconModule,
  MdButtonModule,
  MdCardModule,
  MdInputModule,
  MdRadioModule,
  MdRadioButton
 } from ‘@angular/material‘;
import { FormsModule, ReactiveFormsModule } from ‘@angular/forms‘;
import { HttpModule } from ‘@angular/http‘;
import { DirectiveModule } from ‘../directive/directive.module‘; 

@NgModule({
  imports: [
    CommonModule,
    RouterModule,
    FormsModule,
    ReactiveFormsModule,
    HttpModule,
    MdToolbarModule,
    MdSidenavModule,
    MdIconModule,
    MdButtonModule,
    MdCardModule,
    MdInputModule,
    DirectiveModule,
    MdRadioModule
  ],
  declarations: [],
  exports: [
    CommonModule,
    RouterModule,
    FormsModule,
    ReactiveFormsModule,
    HttpModule,
    MdToolbarModule,
    MdSidenavModule,
    MdIconModule,
    MdButtonModule,
    MdCardModule,
    MdInputModule,
    DirectiveModule,
    MdRadioButton
  ]
})
export class SharedModule { }

    4.1.5 在组件中使用自定组件对应的选择器即可

      自定义指令的选择器是由@Directive装饰器的selector元数据指定的

        

      在元素中直接标注自定义指令的选择器就行啦

       

<div class="panel panel-primary">
    <div class="panel panel-heading">实现自定义属性指令</div>
    <div class="panel-body">
        <button md-raised-button appDirectiveTest02>实现自定义指令的按钮</button>
        <br /><br />
        <button md-raised-button>未实现自定以指令的按钮</button>
    </div>
    <div class="panel-footer">2018-1-20 22:47:06</div>
</div>

    4.1.6 代码汇总

import { Directive, ElementRef } from ‘@angular/core‘;
import { OnInit } from ‘../../../../node_modules/[email protected][email protected]@@angular/core/src/metadata/lifecycle_hooks‘;

@Directive({
  selector: ‘[appDirectiveTest02]‘
})
export class DirectiveTest02Directive implements OnInit {

  constructor(
    private el: ElementRef
  ) {}

  ngOnInit() {
    this.el.nativeElement.style.backgroundColor = ‘skyblue‘;
  }

}

  4.2 给自定义属性指令绑定输入属性

    在4.1中实现的自定义属性指令中背景颜色是写死的不能更改,我们可以给指令绑定输入属性实现数据传递,从而达到动态改变的目的

    4.2.1 在自定义属性指令的控制器中添加一个输入属性myColor

      

import { Directive, ElementRef, OnInit, Input } from ‘@angular/core‘;

@Directive({
  selector: ‘[appDirectiveTest02]‘
})
export class DirectiveTest02Directive implements OnInit {

  @Input()
  myColor: string;

  constructor(
    private el: ElementRef
  ) {}

  ngOnInit() {
    this.el.nativeElement.style.backgroundColor = this.myColor;
  }

}

    4.2.2 在组件中给myColor属性赋值

      技巧01:在给输入属性赋值时,等号右边如果不是一个变量就需要用单引号括起来

      

<div class="panel panel-primary">
    <div class="panel panel-heading">实现自定义属性指令</div>
    <div class="panel-body">
        <button md-raised-button appDirectiveTest02 [myColor]="‘red‘">实现自定义指令的按钮</button>
        <br /><br />
        <button md-raised-button>未实现自定以指令的按钮</button>
    </div>
    <div class="panel-footer">2018-1-20 22:47:06</div>
</div>

    4.2.3 效果展示

      

    4.2.4 改进

      可以通过自定义属性指令的选择器来实现数据传输

      》利用自定义属性指令的选择器作为输入属性myColor输入属性的别名

        

      》在组件中直接利用自定义指令的选择器作为输入属性

        

<div class="panel panel-primary">
    <div class="panel panel-heading">实现自定义属性指令</div>
    <div class="panel-body">
        <button md-raised-button [appDirectiveTest02]="‘yellow‘">实现自定义指令的按钮</button>
        <br /><br />
        <button md-raised-button>未实现自定以指令的按钮</button>
    </div>
    <div class="panel-footer">2018-1-20 22:47:06</div>
</div>

      》 效果展示

        

  4.3 响应用户操作

    daigengxin......2018-1-20 23:25:11

        

    

    

原文地址:https://www.cnblogs.com/NeverCtrl-C/p/8322327.html

时间: 2024-10-12 17:29:15

Angular17 Angular自定义指令的相关文章

Angular自定义指令(directive)

angular自定义指令,意我们可以通过angula自己定义指令,来实现我们的特殊要求,为所欲为,一支穿云箭,千军万马来相见 多少年的老规矩了,先看代码: 1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <meta http-equiv="X-UA-Compatible" content=&quo

angular 自定义指令详解 Directive

在angular中,Directive,自定义指令的学习,可以更好的理解angular指令的原理,当angular的指令不能满足你的需求的时候,嘿嘿,你就可以来看看这篇文章,自定义自己的指令,可以满足你的各种需求的指令. 本篇文章的参考来自  AngularJS权威指南 , 文章中主要介绍指令定义的选项配置 废话不多说,下面就直接上代码 //angular指令的定义,myDirective ,使用驼峰命名法 angular.module('myApp', []) .directive('myDi

angular自定义指令命名的那个坑

Directive 先从定义一个简单的指令开始. 定义一个指令本质上是在HTML中通过元素.属性.类或注释来添加功能.AngularJS的内置指令都是以ng开头,如果想自定义指令,建议自定义一个前缀代表自己的命名空间.这里我们先使用my作为前缀: var myApp = angular.module('myApp', []) .directive('myDirective', function() { return { restrict: 'A', replace: true, template

angular 自定义指令 详解--restrict、restrict、replace

Angularjs 允许根据实际业务需要自定义指令, 通过angular全局对象下的 directive 方法实现.可以自定义属性.自定义标签.自定义功能 接下来定义一个名叫custom的指令,并利用这个自定义指令来实现元素的替换 html代码: <body ng-app="app"> <p custom></p> <custom></custom> js代码: var app = angular.module("a

angular 自定义指令 directive transclude 理解

项目中断断续续的用了下angular,也没狠下心 认真的学习.angular 特别是自定义指令这块 空白. transclude 定义是否将当前元素的内容转移到模板中.看解释有点抽象. 看解释有点抽象Demo: <!DOCTYPE html> <html lang="en" ng-app='myApp'> <head> <meta charset="UTF-8"> <title>Angularjs</

angular自定义指令scope属性学习笔记

指令在angular项目中的应用非常频繁,当它自带的指令不能满足我们的需求时,我们就需要自定义指令: 在angular,作用域是一个很重要的概念.同样的,要定义一个指令,我们也需要设置他的sope: angular为自定义指令提供了三种scope:①不创建独立的作用域,直接使用父作用域(false):②创建一个继承自它的父级作用域的独立作用域(true):③创建一个完全与外部隔离的作用域({}):

angular自定义指令在指令里面调用父作用域里面的方法传参

使用自定义指令的时候在指令里面调用父作用域里面的方法,在指令里面 在父作用域里面的模板里面使用指令 在控制器里面

angular自定义指令-directive

Directive究竟是个怎么样的一个东西呢?我个人的理解是这样的:将一段html.js封装在一起,形成一个可复用的独立个体,具体特定的功能.下面我们来详细解读一下Directive的一般性用法. var myDirective = angular.module('directives', []); myDirective.directive('directiveName', function($inject) { return { template: '<div></div>',

angular自定义指令基础

你可以向模块注册一个指令,像这样: <!-- lang: js --> myapp = angular.module("myapp", []); myapp.directive('div', function() { var directive = {}; directive.restrict = 'E'; /* restrict this directive to elements */ directive.template = "My first direct