欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

详解ng-alain动态表单SF表单项设置必填和正则校验

程序员文章站 2022-06-17 23:39:08
在使用动态表单时对表单项进行非空校验及正则校验。 使用手机号进行校验,示例如下: 动态表单的基本使用: 基于基本示例,增加手机号必填与正则校验的例子:...

在使用动态表单时对表单项进行非空校验及正则校验。

使用手机号进行校验,示例如下:

动态表单的基本使用:

基于基本示例,增加手机号必填与正则校验的例子:

@component({
 selector: 'app-home',
 template: `
 <sf [schema]="schema" [ui]="ui" (formsubmit)="submit($event)"></sf>
 `
})
export class homecomponent {
 schema: sfschema = {
  properties: {
   email: {
    type: 'string',
    title: '邮箱',
    format: 'email',
    maxlength: 20
   },
   name: {
    type: 'string',
    title: '姓名',
    minlength: 3
   },
   mobilenumber: { type: 'string', title: '手机号', pattern: '^1[0-9]{10}$' },
  },
  
 };

 ui: sfuischema = {
  '*': {
   spanlabelfixed: 100,
   grid: { span: 24 },
  },
  $mobilenumber: {
   widget: 'string',
   errors: { 'pattern': '请输入11位手机号码' }
  }
 };

 submit(value: any) {

 }
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。