Angular PrimeNG表格编辑器默认组件

Angular PrimeNG表格编辑器默认组件

Angular PrimeNG是一个开源框架,拥有丰富的原生Angular UI组件,可以用来做很好的造型,这个框架用来制作响应式网站非常方便。本文将向我们展示如何在Angular PrimeNG中使用表格编辑器默认组件。我们还将了解代码示例中使用的各种属性和语法。

Angular PrimeNG表单编辑器是一个基于Quill的富文本编辑器组件。

Angular PrimeNG表单编辑器默认组件属性:

  • style。它被用来对容器进行内联样式。

语法:

<p-editor 
    [(ngModel)]="..." 
    [style]="{...}">
</p-editor>

创建Angular应用程序和模块安装。

第1步:使用以下命令创建一个Angular应用程序。

ng new appname

第2步:创建你的项目文件夹即appname后,使用以下命令移动到它。

cd appname

第3步:在你给定的目录中安装PrimeNG。

npm install primeng --save
npm install primeicons --save

项目结构:它将看起来像如下。

Angular PrimeNG表格编辑器默认组件

要运行上述文件,请运行以下命令:

ng serve --save

例子1:下面的例子说明了**Angular PrimeNG表单编辑器默认组件的使用。

  • app.component.html:
<h2 style="color: green;">
    GeeksforGeeks
</h2>
  
<h5>Angular PrimeNG Form Editor Default Component</h5>
  
<p-editor [style]="{ height: '120px' }"></p-editor>
  • app.component.ts:
import { Component } from '@angular/core';
  
@Component({
    selector: 'app-root',
    templateUrl: './app.component.html',
})
export class AppComponent { }
  • app.module.ts:
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { FormsModule } from '@angular/forms';
import { BrowserAnimationsModule }
    from '@angular/platform-browser/animations';
import { EditorModule } from 'primeng/editor';
import { AppComponent } from './app.component';
import { InputMaskModule } from 'primeng/inputmask';
  
@NgModule({
    imports: [
        EditorModule,
        BrowserModule,
        BrowserAnimationsModule,
        InputMaskModule,
        FormsModule
    ],
    declarations: [AppComponent],
    bootstrap: [AppComponent]
})
  
export class AppModule { }

输出:

Angular PrimeNG表格编辑器默认组件

例子2:下面的例子说明了Angular PrimeNG表单编辑器默认组件使用[(ngModel)].的用途。

  • app.component.html:
<h2 style="color: green">GeeksforGeeks</h2>
<h5>Angular PrimeNG Form Editor Default Component</h5>
<p-editor 
    [(ngModel)]="gfg" 
    [style]="{ height: '120px' }">
</p-editor>
  • app.component.ts:
import { Component } from '@angular/core';
  
@Component({
    selector: 'app-root',
    templateUrl: './app.component.html',
})
export class AppComponent {
    gfg: string =
        `<div>GeeksforGeeks!</div>
        <div>
            It is a Computer Science Portal
        </div>
        <div><br></div>`;
}
  • app.module.ts:
import { NgModule } from '@angular/core';
import { BrowserModule }
    from '@angular/platform-browser';
import { FormsModule } from '@angular/forms';
import { BrowserAnimationsModule }
    from '@angular/platform-browser/animations';
import { EditorModule } from 'primeng/editor';
import { AppComponent } from './app.component';
import { InputMaskModule } from 'primeng/inputmask';
  
@NgModule({
    imports: [
        EditorModule,
        BrowserModule,
        BrowserAnimationsModule,
        InputMaskModule,
        FormsModule
    ],
    declarations: [AppComponent],
    bootstrap: [AppComponent]
})
  
export class AppModule { }

输出:

Angular PrimeNG表格编辑器默认组件

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程