이 글에서는 주로 ng-alain을 기반으로 자체 선택 구성 요소를 정의하는 Angle의 예를 소개하고 참고용으로 제공합니다.
1 -select2.comComponent.ts 페이지, 코드에 주석이 있습니다. 코드는 다음과 같습니다:<nz-select #select style="width:100%;" [(ngModel)]="selectedOption" [nzPlaceHolder]="myPlaceHolder" nzAllowClear [nzShowSearch]="true" [nzNotFoundContent]="'无匹配'"> <nz-option *ngFor="let option of options" [nzLabel]="option.label" [nzValue]="option" [nzDisabled]="option.disabled"> </nz-option> </nz-select>
import { ControlValueAccessor } from '@angular/forms/src/directives'; import { Component, forwardRef, Input,OnInit,ElementRef,Output,EventEmitter} from '@angular/core'; import { NG_VALUE_ACCESSOR } from '@angular/forms'; import { Router, NavigationEnd } from '@angular/router'; import { FormGroup, FormBuilder, Validators } from '@angular/forms'; import { SelectService } from './my-select2.service'; declare var $: any; @Component({ selector: 'nz-select2', templateUrl: './my-select2.component.html', providers: [ { provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => NzSelect2Component),//注入表单控件 multi: true }] }) export class NzSelect2Component implements OnInit{ constructor(private selectService:SelectService) { } innerValue: any = ''; //监听绑定的值,与外岑的ngModel相互绑定 set selectedOption(val:any){ if (val !== this.innerValue) { this.innerValue = val; this.onChangeCallback(val.value); this.dataBack.emit(val.value); // 事件 } } get selectedOption():any{ return this.innerValue; } options = [];//接收select的数组 _dataSource:any;//接收本地的自定义数组或者请求返回的数组 @Input() url:any;//请求的url @Input() myPlaceHolder:any;//自定义的PlaceHolder @Input() //下拉框的数据格式 fieldKey:any = { text: 'text', value: 'value' }; @Input() set dataSource(val: any) { this._dataSource = val; if ($.isArray(this._dataSource)) { this.options=this._dataTransform(this._dataSource);//如果是本地数组或直接请求的数组直接复制 } } get dataSource(): any { return this._dataSource; } @Output() dataBack = new EventEmitter<any>(); registerOnChange(fn: (value: any) => void) { this.onChangeCallback = fn; } registerOnTouched(fn: any) { this.onTouchedCallback = fn; } writeValue(value: string) { } onChangeCallback = (value: any) => {}; onTouchedCallback = (value: any) => {}; ngOnInit() { //如果url存在则直接请求 if(this.url){ this.selectService.getValue(this.url).subscribe(data => { data = data.rows || data.data; this.options=this._dataTransform(data); }); } } //转换下拉框下的字段 _dataTransform(data: Array<any>){ let _data = []; for (let i = 0; i < data.length; i++) { _data[i] = {}; _data[i].label = data[i][this.fieldKey.text]; _data[i].value = data[i][this.fieldKey.value]; } return _data; } }
import { Injectable } from '@angular/core'; import { Headers, Http, URLSearchParams,RequestOptions } from '@angular/http'; import { HttpClient, HttpErrorResponse } from '@angular/common/http'; import 'rxjs/add/operator/toPromise'; // import { environment } from '../../environments/environment'; @Injectable() export class SelectService { constructor(private http: HttpClient) {} getValue(url: any):any{ return this.http .get(url); } }
import { NgModule, ModuleWithProviders } from '@angular/core'; import { CommonModule } from '@angular/common'; import { FormsModule,ReactiveFormsModule } from '@angular/forms'; import { NzSelect2Component } from './my-select2.component'; import { SelectService } from './my-select2.service'; import { NzSelectModule } from 'ng-zorro-antd'; @NgModule({ imports: [ CommonModule, FormsModule, NzSelectModule, ReactiveFormsModule ], exports:[ NzSelect2Component ], declarations: [ NzSelect2Component ], providers: [ SelectService ] }) export class MySelectModule { constructor() { } }
6. 호출 방법: url은 배경을 요청하는 인터페이스이고 fieldKey는 배열 형식입니다. 여기서는 배경에서 반환된 형식에 따라 필드를 정의할 수 있습니다. 예: 백그라운드 반환 형식은 [{dmsm1:5,dmz:5}]이고 fieldKey는 다음과 같이 정의됩니다. myPlaceHolder는 초기화 중에 표시되는 콘텐츠이며, 로컬 배열인 경우에는 [dataSource]=만 추가하면 됩니다. "peer", 여기서 피어는 로컬 배열입니다
import { MySelectModule } from 'bizapp/base/components/myselect/myselect.module';
7. 요약: 이 구성 요소를 통해 URL과 fieldKey만 수정하면 모든 모듈에서 이를 도입하고 사용할 수 있으므로 코드 사용이 줄어들고 유지 관리가 쉽습니다
위의 내용은 모든 사람을 위해 정리한 내용입니다. 앞으로 모든 사람에게 도움이 되기를 바랍니다.
관련 기사:
노드 타이머 지식의 자세한 해석Es6의 Generator 함수에 대한 자세한 분석
JavaScript의 Array filter() 메서드를 사용하여 압축된 희소 배열 구현
위 내용은 각도에서 ng-alain을 기반으로 자신만의 선택 구성 요소를 정의하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!