Angular PrimeNG Form Inputtext基本组件

Angular PrimeNG Form Inputtext基本组件

Angular PrimeNG是一个开源框架,拥有丰富的原生Angular UI组件,可以用来做很好的造型,这个框架用来制作响应式网站非常方便。在这篇文章中,我们将学习如何在Angular PrimeNG中使用InputText基本组件。让我们来了解一下代码中的属性和语法。

Inputtext组件是一个用于输入由inputText创建的数据的元素。

语法:

<input
    type="text"
    class="..."
    placeholder="...."
    pInputText
/>

Angular PrimeNG Form Inputtext Basic Component属性:

  • disabled : 我们可以将输入组件设置为禁用。它是一个布尔数据类型,默认值是false。

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

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

ng new appname

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

cd appname

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

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

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

Angular PrimeNG Form Inputtext基本组件

运行应用程序的步骤:运行以下命令以查看输出结果

ng serve --open

实例1:这是一个基本的例子,展示了如何使用**InputText基本组件。

  • app.component.html:
<h1 style="color: green">GeeksforGeeks</h1>
<h5>Angular PrimeNG InputText Basic Component</h5>
<input
    type="text"
    placeholder="Input any text geek..."
    pInputText
/>
  • app.component.ts:
import { Component } from '@angular/core';
  
@Component({
    selector: 'app-root',
    templateUrl: './app.component.html',
    styleUrls: ['./app.component.scss'],
})
  
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 { AppComponent }   from './app.component';
import {InputTextModule} from 'primeng/inputtext';
import {ButtonModule} from 'primeng/button';
  
@NgModule({
    imports: [
        BrowserModule,
        BrowserAnimationsModule,
        InputTextModule,
        ButtonModule,
        FormsModule
    ],
    declarations: [ AppComponent ],
    bootstrap:    [ AppComponent ]
})
  
export class AppModule { }

输出:

Angular PrimeNG Form Inputtext基本组件

例子2:下面是另一个例子,说明如何使用**InputText基本组件。

  • app.component.html:
<h1 style="color: green">GeeksforGeeks</h1>
<h5>Angular PrimeNG InputText Basic Component</h5>
  
<input
    type="text"
    class="p-inputtext-sm"
    placeholder="Input any text geek..."
    pInputText
/>
<br /><br />
<input
    type="text"
    class="p-inputtext-md"
    placeholder="Input any text geek..."
    pInputText
/>
<br /><br />
<input
    type="text"
    class="p-inputtext-lg"
    placeholder="Input any text geek..."
    pInputText
/>
  • app.component.ts:
import { Component } from '@angular/core';
  
@Component({
    selector: 'app-root',
    templateUrl: './app.component.html',
    styleUrls: ['./app.component.scss'],
})
  
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 { AppComponent }   from './app.component';
import {InputTextModule} from 'primeng/inputtext';
import {ButtonModule} from 'primeng/button';
  
@NgModule({
    imports: [
        BrowserModule,
        BrowserAnimationsModule,
        InputTextModule,
        ButtonModule,
        FormsModule
    ],
    declarations: [ AppComponent ],
    bootstrap:    [ AppComponent ]
})
  
export class AppModule { }

输出:

Angular PrimeNG Form Inputtext基本组件

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程