Angular使用總結 --- 如何正確的操作DOM

来源:https://www.cnblogs.com/shapeY/archive/2018/07/06/9272961.html
-Advertisement-
Play Games

無奈接手了一個舊項目,上一個老哥在Angular項目中大量使用了JQuery來操作DOM,真的是太不講究了。那麼如何優雅的使用Angular的方式來操作DOM呢? 獲取元素 1、ElementRef A wrapper around a native element inside of a View ...


  無奈接手了一個舊項目,上一個老哥在Angular項目中大量使用了JQuery來操作DOM,真的是太不講究了。那麼如何優雅的使用Angular的方式來操作DOM呢?

獲取元素

  1、ElementRef  ---   A wrapper around a native element inside of a View.

    在組件的 constructor中註入ElementRef,可以獲取到整個組件元素的包裹。

@Component({
  selector: 'app-test-page',
  templateUrl: './test-page.component.html',
  styleUrls: ['./test-page.component.scss']
})
export class TestPageComponent implements OnInit {

  constructor(
    private el: ElementRef
  ) { }

  ngOnInit() {
  }

  getDomTest() {
    console.dir(this.el);
  }
}

  ElementRef中的nativeElement即是組件最外層的DOM元素。再通過原生的DOM定位方式,即可獲取到指定的selector元素。

  getDomTest() {
    console.dir(this.el.nativeElement.querySelector('.test-get-dom')); // 獲取指定的子元素
  }

  

  2、@viewChild()  ---    You can use ViewChild to get the first element or the directive matching the selector from the  view DOM. 

    @viewChild可以獲取指定的元素, 指定的方式可以是本地變數或者組件類型;

// HTML
<div class="tip-test-wrapper">
   // 本地變數綁定button按鈕 <button class="test-get-dom" #testdom (click)="getDomTest()">測試獲取DOM</button> </div>
  // Dialog組件 <app-dialog></app-dialog> // ts import { DialogComponent } from './../../common/components/dialog/dialog.component'; @Component({ selector: 'app-test-page', templateUrl: './test-page.component.html', styleUrls: ['./test-page.component.scss'] }) export class TestPageComponent implements OnInit {   // 通過本地變數獲取元素 可通過read來指定獲取的元素類型 @ViewChild('testdom' , { read: ViewContainerRef }) viewcontainer: ViewContainerRef; @ViewChild('testdom') viewelement: ElementRef;

  // 通過組件類型來獲取 @ViewChild(DialogComponent) viewcontent: DialogComponent; constructor( private el: ElementRef ) { } ngOnInit() { } getDomTest() { // console.dir(this.el.nativeElement.querySelector('.test-get-dom')); console.dir(this.viewcontainer); console.dir(this.viewelement); console.dir(this.viewcontent); } }

  

  備註:ElementRef或者 @viewChild 獲取元素,一定要在 ngAfterViewInit 周期之後再使用。 

 

 3、@viewChildren --   You can use ViewChildren to get the {@link QueryList} of elements or directives from theview DOM.

  @viewChild會返回符合條件的第一個元素,如果需要獲取多個符合條件的元素呢?@viewChildren會返回所有符合條件的元素的list。指定selector的方式與@viewChild一致。

// 複製一個元素
  <div class="tip-test-wrapper">
    <button class="test-get-dom" #testdom (click)="getDomTest()">測試獲取DOM</button>
  </div>
  <div class="tip-test-wrapper">
    <button class="test-get-dom" #testdom (click)="getDomTest()">測試獲取DOM</button>
  </div>
</div>
<app-dialog></app-dialog>
<app-dialog></app-dialog>

// ts
import { DialogComponent } from './../../common/components/dialog/dialog.component';


@Component({
  selector: 'app-test-page',
  templateUrl: './test-page.component.html',
  styleUrls: ['./test-page.component.scss']
})
export class TestPageComponent implements OnInit {

  @ViewChild('testdom' , { read: ViewContainerRef }) viewcontainer: ViewContainerRef;
  @ViewChild('testdom') viewelement: ElementRef;
  @ViewChildren('testdom') viewelements: QueryList<any>;
  @ViewChild(DialogComponent) viewcontent: DialogComponent;
  @ViewChildren(DialogComponent) viewcontents: QueryList<DialogComponent>;

  constructor(
    private el: ElementRef
  ) { }

  ngOnInit() {
  }

  getDomTest() {
    // console.dir(this.el.nativeElement.querySelector('.test-get-dom'));
    // console.dir(this.viewcontainer);
    console.dir(this.viewelement);
    console.dir(this.viewelements);
    console.dir(this.viewcontent);
    console.dir(this.viewcontents);
  }

  

 

操作DOM  --- Renderer2

  在獲取dom之後,如何對dom進行操作呢?原生的domAPI是一種選擇,但是Angular提供了更好的跨平臺方式   Renderer2。

  引入 Renderer2  , 然後在construct中註入。

import { Component, OnInit , ViewContainerRef , ElementRef , ViewChild,  Renderer2 , ViewChildren, QueryList} from '@angular/core';

import { DialogComponent } from './../../common/components/dialog/dialog.component';


@Component({
  selector: 'app-test-page',
  templateUrl: './test-page.component.html',
  styleUrls: ['./test-page.component.scss']
})
export class TestPageComponent implements OnInit {

  @ViewChild('testdom' , { read: ViewContainerRef }) viewcontainer: ViewContainerRef;
  @ViewChild('testdom') viewelement: ElementRef;
  @ViewChildren('testdom') viewelements: QueryList<any>;
  @ViewChild(DialogComponent) viewcontent: DialogComponent;
  @ViewChildren(DialogComponent) viewcontents: QueryList<DialogComponent>;

  constructor(
    private render: Renderer2,
    private el: ElementRef
  ) { }

  ngOnInit() {
  }

  getDomTest() {
// 修改元素顏色 this.render.setStyle(this.viewelement.nativeElement , 'color' , 'red'); } }

  renderer2提供了豐富的API供使用,如下:

總結

  通過elementRef或者@viewChild @viewChildren獲取元素,再通過renderer2提供的API來操作元素。不過記得在不要在 ngAfterViewInit 周期之前使用。通過Angular提供的方式,可以滿足大部分的操作DOM的需求了。如果有特殊的場景,當然還是原生DOM擼起來呀

 


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

-Advertisement-
Play Games
更多相關文章
  • HTML5新特性總結 HTML5屬於上一代HTML的新迭代語言,設計HTML5最主要的目的是為了在移動設備上支持多媒體!!!例如: video 標簽和 audio 及 canvas 標記 HTML5的優點、缺點 (巨大的幾個好處){由於資歷“尚淺”只瞭解到了這幾點 湊合著看吧}: (1)移動,移動還 ...
  • post請求,ajax傳入的參數獲取的時候為ctx.request.body get請求,ajax傳入參數獲取的時候為ctx.request.query.參數名 koa-csrf可以設置什麼請求的時候除外,這樣除外的請求就不要求必須傳csrf 了 koa mongoose始終報錯FormModel ...
  • 避免先寫了DOM操作,但是元素是動態載入的,所以點擊不生效,比較好的方法有兩個: 1、動態添加的時候加行內事件,比如onclick="funcName()" 在js中寫好方法名對應的方法就可以了,如果綁定方法的元素太多,可以考慮使用方法二; 2、jquery的on事件綁定 eg: 註意:on事件先是 ...
  • 在項目開發中有時候會碰到要求列印頁面中的數據的功能需求。需求原因主要有兩點吧,一是需要列印的數據只是頁面的一部分即頁面的區域列印,比如只需要列印頁面中表格裡面選中的數據等,二是需要列印出來的樣式和頁面展示的樣式有差別,比如需要將表格中的列豎著列印出來。 我在開發中主要用到的就是window.prin ...
  • 之前一直使用C#編寫桌面應用,也順帶寫一些Web端應用。最近在看node時發現常用的vscode是用electron編寫的,一種想吃螃蟹的念頭就涌了上來。 在網上找了找electron的資料,也研究了一下官方文檔,發現electron app其實就是一個chrome瀏覽器,UI全部都是使用web端技 ...
  • 給不同的瀏覽器識別 例如: ...
  • JSP的本質就是一個Servlet,JSP的運行之前會先被Tomcat伺服器翻譯為.java文件,然後在將.java文本編譯為.class文件,而我們在訪問jsp時,處理請求的就是那個翻譯後的類。 1.<% %> 叫做腳本片段,其中寫的內容會翻譯在Servlet的Service方法中,顯然我們可以在 ...
  • 在使用koa-passport,koa-session中間件之後,可以進行用戶登錄的驗證,再配合此攔截器,可以實現進入所有頁面之前,對是否登錄做一個驗證,把不需要攔截的路由寫在 ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...