Options
All
  • Public
  • Public/Protected
  • All
Menu

Class FieldModel<Value>

Type parameters

  • Value

Hierarchy

Implements

Index

Constructors

constructor

Properties

[FIELD_ID]

[FIELD_ID]: boolean
internal

[MODEL_ID]

[MODEL_ID]: boolean
internal

Private defaultValue

defaultValue: Value

destroyOnUnmount

destroyOnUnmount: boolean = false

组件 unmount 的时候删除 model

error$

error$: BehaviorSubject<undefined | null | IValidateResult<Value>> = new BehaviorSubject<IMaybeError<Value>>(null)

id

id: string

initialValue

initialValue: Maybe<Value> = None()
internal

初始值

isCompositing

isCompositing: boolean = false

输入法的 composition 状态

isTouched

isTouched: boolean = false

normalizeBeforeSubmit

normalizeBeforeSubmit: INormalizeBeforeSubmit<Value, any> = id

用于表单提交前格式化 Field 值的回调函数

owner

owner: BasicModel<any> | null = null

phantomValue

phantomValue: Value
internal

validate$

validate$: Subject<IValidation> = new Subject<IValidation>()
internal

validators

validators: IValidators<Value> = []
internal

校验规则数组

value$

value$: BehaviorSubject<Value>

Accessors

error

form

  • get form(): undefined | null | FormModel<any>

value

  • get value(): Value
  • set value(value: Value): void

Methods

clear

  • clear(): void

dirty

  • dirty(): boolean

dispose

  • dispose(): void

getRawValue

  • getRawValue(): Value

getSubmitValue

  • getSubmitValue(): any

initialize

  • initialize(value: Value): void

patchValue

  • patchValue(value: Value): void

pristine

  • pristine(): boolean

reset

  • reset(): void

touched

  • touched(): boolean

Protected triggerValidate

valid

  • valid(): boolean

validate

Generated using TypeDoc