각도 파이프 문자 카운터
아래 이미지와 같이 양식 필드에서 보는 것이 정상입니다!
그래서 이 "문제"를 해결하기 위해 간단한 Angular 파이프를 만들었습니다!
import { Pipe, PipeTransform } from '@angular/core';
@Pipe({
name: 'counterCharacters'
})
export class CounterCharactersPipe implements PipeTransform {
transform(value: string, ...args: unknown[]): number {
if (value) {
return value.length;
}
return 0;
}
}
@NgModule({
declarations: [
MySiteComponent,
CounterCharactersPipe
],
imports: [
...
]
})
<app-form-input-text labelDescription="Name"
formControlName="name"
inputName="Name"
#name
[classInput]="applyError('name')"
[control]="getField('name')"></app-form-input-text>
<span class="d-block">
{{ this.name.value | counterCharacters }}/30
</span>
이제 값을 삽입하면 span 태그가 입력 값의 길이를 보여줍니다!
그게 다야, 읽어줘서 고마워!
Reference
이 문제에 관하여(각도 파이프 문자 카운터), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/renancferro/angular-pipe-character-counter-1odf텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)