中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

angular6使用ngContentOutlet實現組件位置交換的方法

發布時間:2020-08-29 14:11:43 來源:億速云 閱讀:134 作者:小新 欄目:web開發

小編給大家分享一下angular6使用ngContentOutlet實現組件位置交換的方法,希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去探討吧!

ngContentOutlet指令介紹

ngContentOutlet指令與ngTemplateOutlet指令類似,都用于動態組件,不同的是,前者傳入的是一個Component,后者傳入的是一個TemplateRef。

首先看一下使用:

其中MyComponent是我們自定義的組件,該指令會自動創建組件工廠,并在ng-container中創建視圖。

實現組件位置交換

angular中視圖是和數據綁定的,它并不推薦我們直接操作HTML DOM元素,而且推薦我們通過操作數據的方式來改變組件視圖。

首先定義兩個組件:

button.component.ts

import { Component, OnInit } from '@angular/core';
@Component({
 selector: 'app-button',
 template: `<button>按鈕</button>`,
 styleUrls: ['./button.component.css']
})
export class ButtonComponent implements OnInit {
 constructor() { }
 ngOnInit() {

text.component.ts

import { Component, OnInit, Input } from '@angular/core';
@Component({
 selector: 'app-text',
 template: `
 <label for="">{{textName}}</label>
 <input type="text">
 `,
 styleUrls: ['./text.component.css']
})
export class TextComponent implements OnInit {
 @Input() public textName = 'null';
 constructor() { }
 ngOnInit() {
 }
}

我們在下面的代碼中,動態創建以上兩個組件,并實現位置交換功能。

動態創建組件,并實現位置交換

我們先創建一個數組,用于存放上文創建的兩個組件ButtonComponent和TextComponent,位置交換時,只需要調換組件在數組中的位置即可,代碼如下:

import { TextComponent } from './text/text.component';
import { ButtonComponent } from './button/button.component';
import { Component } from '@angular/core';
@Component({
 selector: 'app-root',
 template: `
 <ng-container *ngFor="let item of componentArr" >
  <ng-container *ngComponentOutlet="item"></ng-container>
 </ng-container>
 <br>
 <button (click)="swap()">swap</button>
`,
 styleUrls: ['./app.component.css']
})
export class AppComponent {
 public componentArr = [TextComponent, ButtonComponent];
 constructor() {
 }
 public swap() {
  const temp = this.componentArr[0];
  this.componentArr[0] = this.componentArr[1];
  this.componentArr[1] = temp;
 }
}

看完了這篇文章,相信你對angular6使用ngContentOutlet實現組件位置交換的方法有了一定的了解,想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

浦东新区| 黑山县| 闸北区| 惠东县| 陆川县| 太仆寺旗| 喀喇| 无棣县| 五原县| 新宁县| 海宁市| 新丰县| 阳泉市| 邵武市| 汉中市| 甘孜| 南投市| 平湖市| 连云港市| 奉新县| 娄底市| 武穴市| 重庆市| 沁源县| 天气| 祁连县| 凤冈县| 岳阳县| 新乡市| 淳安县| 白朗县| 邵阳市| 成安县| 剑阁县| 鸡西市| 革吉县| 三门峡市| 三河市| 延安市| 大埔区| 东台市|