[ngx-formly] Customize Angular Formly validation messages
When you display error messages you want to make them as understandable as possible such that the user is able to figure out the problem. Example: the error message of a min
validator should ideally contain the actual number and the min number allowed. So the message could be like "You have to enter a number bigger than X. You entered Y". Let's see how Formly allows us to display such highly customizable messages.
// app.module.ts import { BrowserModule } from '@angular/platform-browser'; import { NgModule } from '@angular/core'; import { AppComponent } from './app.component'; import { ReactiveFormsModule } from '@angular/forms'; import { FormlyModule, FormlyFieldConfig } from '@ngx-formly/core'; import { FormlyMaterialModule } from '@ngx-formly/material'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { SharedModule } from './shared/shared.module'; import { DebugComponent } from './shared/debug.component'; // global min error message, you can override by validation.messages.min in field export function minValidationMessage(err, field: FormlyFieldConfig) { return `Please provide a value bigger than ${err.min}. You provided ${err.actual}`; } @NgModule({ declarations: [AppComponent], imports: [ BrowserModule, SharedModule, ReactiveFormsModule, FormlyModule.forRoot({ validationMessages: [ { name: 'required', message: 'This field is required', }, { name: 'min', message: minValidationMessage, }, ], }), FormlyMaterialModule, BrowserAnimationsModule, ], providers: [], bootstrap: [AppComponent], }) export class AppModule {}
{ key: 'age', type: 'input', templateOptions: { type: 'number', label: 'Age', min: 18, // use global min error message }, // override the global min error message validation: { messages: { min: 'Sorry, you have to be older than 18', }, }, },
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· Manus重磅发布:全球首款通用AI代理技术深度解析与实战指南
· 开源Multi-agent AI智能体框架aevatar.ai,欢迎大家贡献代码
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
· AI技术革命,工作效率10个最佳AI工具
2019-01-09 [Functional Programming] Read and Transform Values from a State ADT’s State (get)
2018-01-09 [Python] Scatter Plot for daily return
2015-01-09 [HTML5] Input accepts only 6 number characters
2015-01-09 [Heroku] How to pull, push changes
2015-01-09 [VirtualBox] Install Ubuntu 14.10 error 5 Input/output error