TanStack Form 的核心功能是验证的概念。TanStack Form 使验证高度可定制。
这取决于你!<Field /> 组件接受一些回调作为 props,例如 onChange 或 onBlur。这些回调会收到字段的当前值以及 fieldAPI 对象,以便你执行验证。如果你发现验证错误,只需将错误消息作为字符串返回,它将可在 field().state.meta.errors 中找到。
这里有一个例子
<form.Field
name="age"
validators={{
onChange: ({ value }) =>
value < 13 ? 'You must be 13 to make an account' : undefined,
}}
>
{(field) => (
<>
<label for={field().name}>Age:</label>
<input
id={field().name}
name={field().name}
value={field().state.value}
type="number"
onInput={(e) => field().handleChange(e.target.valueAsNumber)}
/>
{!field().state.meta.isValid ? (
<em role="alert">{field().state.meta.errors.join(', ')}</em>
) : null}
</>
)}
</form.Field>
<form.Field
name="age"
validators={{
onChange: ({ value }) =>
value < 13 ? 'You must be 13 to make an account' : undefined,
}}
>
{(field) => (
<>
<label for={field().name}>Age:</label>
<input
id={field().name}
name={field().name}
value={field().state.value}
type="number"
onInput={(e) => field().handleChange(e.target.valueAsNumber)}
/>
{!field().state.meta.isValid ? (
<em role="alert">{field().state.meta.errors.join(', ')}</em>
) : null}
</>
)}
</form.Field>
在上面的示例中,验证是在每次按键时进行的(onChange)。如果相反,我们希望在字段失焦时进行验证,我们会像这样更改上面的代码
<form.Field
name="age"
validators={{
onChange: ({ value }) =>
value < 13 ? 'You must be 13 to make an account' : undefined,
}}
>
{(field) => (
<>
<label for={field().name}>Age:</label>
<input
id={field().name}
name={field().name}
value={field().state.value}
type="number"
// Listen to the onBlur event on the field
onBlur={field().handleBlur}
// We always need to implement onInput, so that TanStack Form receives the changes
onInput={(e) => field().handleChange(e.target.valueAsNumber)}
/>
{!field().state.meta.isValid ? (
<em role="alert">{field().state.meta.errors.join(', ')}</em>
) : null}
</>
)}
</form.Field>
<form.Field
name="age"
validators={{
onChange: ({ value }) =>
value < 13 ? 'You must be 13 to make an account' : undefined,
}}
>
{(field) => (
<>
<label for={field().name}>Age:</label>
<input
id={field().name}
name={field().name}
value={field().state.value}
type="number"
// Listen to the onBlur event on the field
onBlur={field().handleBlur}
// We always need to implement onInput, so that TanStack Form receives the changes
onInput={(e) => field().handleChange(e.target.valueAsNumber)}
/>
{!field().state.meta.isValid ? (
<em role="alert">{field().state.meta.errors.join(', ')}</em>
) : null}
</>
)}
</form.Field>
因此,您可以通过实现所需的回调函数来控制验证何时完成。您甚至可以在不同时间执行不同的验证部分。
<form.Field
name="age"
validators={{
onChange: ({ value }) =>
value < 13 ? 'You must be 13 to make an account' : undefined,
onBlur: ({ value }) => (value < 0 ? 'Invalid value' : undefined),
}}
>
{(field) => (
<>
<label for={field().name}>Age:</label>
<input
id={field().name}
name={field().name}
value={field().state.value}
type="number"
// Listen to the onBlur event on the field
onBlur={field().handleBlur}
// We always need to implement onInput, so that TanStack Form receives the changes
onInput={(e) => field().handleChange(e.target.valueAsNumber)}
/>
{!field().state.meta.isValid ? (
<em role="alert">{field().state.meta.errors.join(', ')}</em>
) : null}
</>
)}
</form.Field>
<form.Field
name="age"
validators={{
onChange: ({ value }) =>
value < 13 ? 'You must be 13 to make an account' : undefined,
onBlur: ({ value }) => (value < 0 ? 'Invalid value' : undefined),
}}
>
{(field) => (
<>
<label for={field().name}>Age:</label>
<input
id={field().name}
name={field().name}
value={field().state.value}
type="number"
// Listen to the onBlur event on the field
onBlur={field().handleBlur}
// We always need to implement onInput, so that TanStack Form receives the changes
onInput={(e) => field().handleChange(e.target.valueAsNumber)}
/>
{!field().state.meta.isValid ? (
<em role="alert">{field().state.meta.errors.join(', ')}</em>
) : null}
</>
)}
</form.Field>
在上面的示例中,我们在同一字段上不同时间验证不同内容(每次按键和失焦时)。由于 field().state.meta.errors 是一个数组,所有相关错误在给定时间都会显示。你也可以使用 field().state.meta.errorMap 来根据验证发生的时间(onChange、onBlur 等)获取错误。有关显示错误的更多信息,请参阅下文。
一旦设置好验证,您就可以映射错误数组以在 UI 中显示。
<form.Field
name="age"
validators={{
onChange: ({ value }) =>
value < 13 ? 'You must be 13 to make an account' : undefined,
}}
>
{(field) => {
return (
<>
{/* ... */}
{!field().state.meta.isValid ? (
<em>{field().state.meta.errors.join(',')}</em>
) : null}
</>
)
}}
</form.Field>
<form.Field
name="age"
validators={{
onChange: ({ value }) =>
value < 13 ? 'You must be 13 to make an account' : undefined,
}}
>
{(field) => {
return (
<>
{/* ... */}
{!field().state.meta.isValid ? (
<em>{field().state.meta.errors.join(',')}</em>
) : null}
</>
)
}}
</form.Field>
或者使用 errorMap 属性来访问您正在寻找的特定错误。
<form.Field
name="age"
validators={{
onChange: ({ value }) =>
value < 13 ? 'You must be 13 to make an account' : undefined,
}}
>
{(field) => (
<>
{/* ... */}
{field().state.meta.errorMap['onChange'] ? (
<em>{field().state.meta.errorMap['onChange']}</em>
) : null}
</>
)}
</form.Field>
<form.Field
name="age"
validators={{
onChange: ({ value }) =>
value < 13 ? 'You must be 13 to make an account' : undefined,
}}
>
{(field) => (
<>
{/* ... */}
{field().state.meta.errorMap['onChange'] ? (
<em>{field().state.meta.errorMap['onChange']}</em>
) : null}
</>
)}
</form.Field>
值得一提的是,我们的 errors 数组和 errorMap 与验证器返回的类型匹配。这意味着
<form.Field
name="age"
validators={{
onChange: ({ value }) => (value < 13 ? { isOldEnough: false } : undefined),
}}
>
{(field) => (
<>
{/* ... */}
{/* errorMap.onChange is type `{isOldEnough: false} | undefined` */}
{/* meta.errors is type `Array<{isOldEnough: false} | undefined>` */}
{!field().state.meta.errorMap['onChange']?.isOldEnough ? (
<em>The user is not old enough</em>
) : null}
</>
)}
</form.Field>
<form.Field
name="age"
validators={{
onChange: ({ value }) => (value < 13 ? { isOldEnough: false } : undefined),
}}
>
{(field) => (
<>
{/* ... */}
{/* errorMap.onChange is type `{isOldEnough: false} | undefined` */}
{/* meta.errors is type `Array<{isOldEnough: false} | undefined>` */}
{!field().state.meta.errorMap['onChange']?.isOldEnough ? (
<em>The user is not old enough</em>
) : null}
</>
)}
</form.Field>
如上所示,每个 <Field> 都通过 onChange、onBlur 等回调接受自己的验证规则。也可以在表单级别(而不是逐个字段)定义验证规则,通过将类似的回调传递给 createForm() hook。
示例
export default function App() {
const form = createForm(() => ({
defaultValues: {
age: 0,
},
onSubmit: async ({ value }) => {
console.log(value)
},
validators: {
// Add validators to the form the same way you would add them to a field
onChange({ value }) {
if (value.age < 13) {
return 'Must be 13 or older to sign'
}
return undefined
},
},
}))
// Subscribe to the form's error map so that updates to it will render
// alternately, you can use `form.Subscribe`
const formErrorMap = form.useStore((state) => state.errorMap)
return (
<div>
{/* ... */}
{formErrorMap().onChange ? (
<div>
<em>There was an error on the form: {formErrorMap().onChange}</em>
</div>
) : null}
{/* ... */}
</div>
)
}
export default function App() {
const form = createForm(() => ({
defaultValues: {
age: 0,
},
onSubmit: async ({ value }) => {
console.log(value)
},
validators: {
// Add validators to the form the same way you would add them to a field
onChange({ value }) {
if (value.age < 13) {
return 'Must be 13 or older to sign'
}
return undefined
},
},
}))
// Subscribe to the form's error map so that updates to it will render
// alternately, you can use `form.Subscribe`
const formErrorMap = form.useStore((state) => state.errorMap)
return (
<div>
{/* ... */}
{formErrorMap().onChange ? (
<div>
<em>There was an error on the form: {formErrorMap().onChange}</em>
</div>
) : null}
{/* ... */}
</div>
)
}
你可以从表单的验证器设置字段错误。一个常见的用例是在提交时通过调用表单的 onSubmitAsync 验证器来验证所有字段。
import { Show } from 'solid-js'
import { createForm } from '@tanstack/solid-form'
export default function App() {
const form = createForm(() => ({
defaultValues: {
age: 0,
socials: [],
details: {
email: '',
},
},
validators: {
onSubmitAsync: async ({ value }) => {
// Validate the value on the server
const hasErrors = await validateDataOnServer(value)
if (hasErrors) {
return {
form: 'Invalid data', // The `form` key is optional
fields: {
age: 'Must be 13 or older to sign',
// Set errors on nested fields with the field's name
'socials[0].url': 'The provided URL does not exist',
'details.email': 'An email is required',
},
}
}
return null
},
},
}))
return (
<div>
<form
onSubmit={(e) => {
e.preventDefault()
e.stopPropagation()
void form.handleSubmit()
}}
>
<form.Field
name="age"
children={(field) => (
<>
<label for={field().name}>Age:</label>
<input
id={field().name}
name={field().name}
value={field().state.value}
type="number"
onChange={(e) => field().handleChange(e.target.valueAsNumber)}
/>
<Show when={field().state.meta.errors.length > 0}>
<em role="alert">{field().state.meta.errors.join(', ')}</em>
</Show>
</>
)}
/>
<form.Subscribe
selector={(state) => ({ errors: state.errors })}
children={(state) => (
<Show when={state().errors.length > 0}>
<div>
<em>
There was an error on the form: {state().errors.join(', ')}
</em>
</div>
</Show>
)}
/>
<button type="submit">Submit</button>
{/*...*/}
</form>
</div>
)
}
import { Show } from 'solid-js'
import { createForm } from '@tanstack/solid-form'
export default function App() {
const form = createForm(() => ({
defaultValues: {
age: 0,
socials: [],
details: {
email: '',
},
},
validators: {
onSubmitAsync: async ({ value }) => {
// Validate the value on the server
const hasErrors = await validateDataOnServer(value)
if (hasErrors) {
return {
form: 'Invalid data', // The `form` key is optional
fields: {
age: 'Must be 13 or older to sign',
// Set errors on nested fields with the field's name
'socials[0].url': 'The provided URL does not exist',
'details.email': 'An email is required',
},
}
}
return null
},
},
}))
return (
<div>
<form
onSubmit={(e) => {
e.preventDefault()
e.stopPropagation()
void form.handleSubmit()
}}
>
<form.Field
name="age"
children={(field) => (
<>
<label for={field().name}>Age:</label>
<input
id={field().name}
name={field().name}
value={field().state.value}
type="number"
onChange={(e) => field().handleChange(e.target.valueAsNumber)}
/>
<Show when={field().state.meta.errors.length > 0}>
<em role="alert">{field().state.meta.errors.join(', ')}</em>
</Show>
</>
)}
/>
<form.Subscribe
selector={(state) => ({ errors: state.errors })}
children={(state) => (
<Show when={state().errors.length > 0}>
<div>
<em>
There was an error on the form: {state().errors.join(', ')}
</em>
</div>
</Show>
)}
/>
<button type="submit">Submit</button>
{/*...*/}
</form>
</div>
)
}
值得一提的是,如果您有一个返回错误的表单验证函数,该错误可能会被字段特定的验证覆盖。
这意味着:
tsxconst form = createForm(() => ({ defaultValues: { age: 0, }, validators: { onChange: ({ value }) => { return { fields: { age: value.age < 12 ? 'Too young!' : undefined, }, }; }, }, })); return ( <form.Field name="age" validators={{ onChange: ({ value }) => (value % 2 === 0 ? 'Must be odd!' : undefined), }} children={() => <>{/* ... */}</>} /> ); }
const form = createForm(() => ({ defaultValues: { age: 0, }, validators: { onChange: ({ value }) => { return { fields: { age: value.age < 12 ? 'Too young!' : undefined, }, }; }, }, })); return ( <form.Field name="age" validators={{ onChange: ({ value }) => (value % 2 === 0 ? 'Must be odd!' : undefined), }} children={() => <>{/* ... */}</>} /> ); }
只会显示 “必须是奇数!”,即使“太年轻!”错误是由表单级别的验证器返回的。
虽然我们认为大多数验证将是同步的,但在许多情况下,网络调用或其他异步操作对于验证很有用。
为此,我们提供了专用的 onChangeAsync、onBlurAsync 等方法,可用于验证
<form.Field
name="age"
validators={{
onChangeAsync: async ({ value }) => {
await new Promise((resolve) => setTimeout(resolve, 1000))
return value < 13 ? 'You must be 13 to make an account' : undefined
},
}}
>
{(field) => (
<>
<label for={field().name}>Age:</label>
<input
id={field().name}
name={field().name}
value={field().state.value}
type="number"
onInput={(e) => field().handleChange(e.target.valueAsNumber)}
/>
{!field().state.meta.isValid ? (
<em role="alert">{field().state.meta.errors.join(', ')}</em>
) : null}
</>
)}
</form.Field>
<form.Field
name="age"
validators={{
onChangeAsync: async ({ value }) => {
await new Promise((resolve) => setTimeout(resolve, 1000))
return value < 13 ? 'You must be 13 to make an account' : undefined
},
}}
>
{(field) => (
<>
<label for={field().name}>Age:</label>
<input
id={field().name}
name={field().name}
value={field().state.value}
type="number"
onInput={(e) => field().handleChange(e.target.valueAsNumber)}
/>
{!field().state.meta.isValid ? (
<em role="alert">{field().state.meta.errors.join(', ')}</em>
) : null}
</>
)}
</form.Field>
同步和异步验证可以共存。例如,可以在同一字段上定义 onBlur 和 onBlurAsync。
<form.Field
name="age"
validators={{
onBlur: ({ value }) => (value < 13 ? 'You must be at least 13' : undefined),
onBlurAsync: async ({ value }) => {
const currentAge = await fetchCurrentAgeOnProfile()
return value < currentAge ? 'You can only increase the age' : undefined
},
}}
>
{(field) => (
<>
<label for={field().name}>Age:</label>
<input
id={field().name}
name={field().name}
value={field().state.value}
type="number"
onBlur={field().handleBlur}
onInput={(e) => field().handleChange(e.target.valueAsNumber)}
/>
{field().state.meta.errors ? (
<em role="alert">{field().state.meta.errors.join(', ')}</em>
) : null}
</>
)}
</form.Field>
<form.Field
name="age"
validators={{
onBlur: ({ value }) => (value < 13 ? 'You must be at least 13' : undefined),
onBlurAsync: async ({ value }) => {
const currentAge = await fetchCurrentAgeOnProfile()
return value < currentAge ? 'You can only increase the age' : undefined
},
}}
>
{(field) => (
<>
<label for={field().name}>Age:</label>
<input
id={field().name}
name={field().name}
value={field().state.value}
type="number"
onBlur={field().handleBlur}
onInput={(e) => field().handleChange(e.target.valueAsNumber)}
/>
{field().state.meta.errors ? (
<em role="alert">{field().state.meta.errors.join(', ')}</em>
) : null}
</>
)}
</form.Field>
同步验证方法(onBlur)会先运行,而异步方法(onBlurAsync)仅在同步方法(onBlur)成功时运行。要更改此行为,请将 asyncAlways 选项设置为 true,则无论同步方法的结果如何,都会运行异步方法。
虽然在验证数据库时异步调用是最佳选择,但在每次按键时运行网络请求会很容易导致您的数据库遭受拒绝服务攻击(DDOS)。
相反,我们通过添加一个简单的属性来启用一种简便的方法来对 async 调用进行去抖动。
<form.Field
name="age"
asyncDebounceMs={500}
validators={{
onChangeAsync: async ({ value }) => {
// ...
},
}}
children={(field) => {
return <>{/* ... */}</>
}}
/>
<form.Field
name="age"
asyncDebounceMs={500}
validators={{
onChangeAsync: async ({ value }) => {
// ...
},
}}
children={(field) => {
return <>{/* ... */}</>
}}
/>
这将以 500 毫秒的延迟对每个异步调用进行去抖动。您甚至可以在每个验证属性上覆盖此属性。
<form.Field
name="age"
asyncDebounceMs={500}
validators={{
onChangeAsyncDebounceMs: 1500,
onChangeAsync: async ({ value }) => {
// ...
},
onBlurAsync: async ({ value }) => {
// ...
},
}}
children={(field) => {
return <>{/* ... */}</>
}}
/>
<form.Field
name="age"
asyncDebounceMs={500}
validators={{
onChangeAsyncDebounceMs: 1500,
onChangeAsync: async ({ value }) => {
// ...
},
onBlurAsync: async ({ value }) => {
// ...
},
}}
children={(field) => {
return <>{/* ... */}</>
}}
/>
这将每 1500 毫秒运行一次 onChangeAsync,而 onBlurAsync 将每 500 毫秒运行一次。
虽然函数提供了更灵活和定制化的验证方式,但它们可能有点冗长。为了解决这个问题,有一些库提供了基于模式的验证,可以大大简化简写和类型严格的验证。你也可以为整个表单定义一个单一模式,并将其传递给表单级别,错误将自动传播到字段。
TanStack Form 原生地支持所有遵循 Standard Schema 规范 的库,最值得注意的是:
注意:请确保使用最新版本的模式库,因为旧版本可能尚不支持 Standard Schema。
验证不会为你提供转换后的值。有关更多信息,请参阅 提交处理。
要使用这些库中的模式,您可以像使用自定义函数一样将它们传递给 validators props。
import { z } from 'zod'
// ...
const form = createForm(() => ({
// ...
}))
;<form.Field
name="age"
validators={{
onChange: z.number().gte(13, 'You must be 13 to make an account'),
}}
children={(field) => {
return <>{/* ... */}</>
}}
/>
import { z } from 'zod'
// ...
const form = createForm(() => ({
// ...
}))
;<form.Field
name="age"
validators={{
onChange: z.number().gte(13, 'You must be 13 to make an account'),
}}
children={(field) => {
return <>{/* ... */}</>
}}
/>
表单和字段级别的异步验证也受支持。
<form.Field
name="age"
validators={{
onChange: z.number().gte(13, 'You must be 13 to make an account'),
onChangeAsyncDebounceMs: 500,
onChangeAsync: z.number().refine(
async (value) => {
const currentAge = await fetchCurrentAgeOnProfile()
return value >= currentAge
},
{
message: 'You can only increase the age',
},
),
}}
children={(field) => {
return <>{/* ... */}</>
}}
/>
<form.Field
name="age"
validators={{
onChange: z.number().gte(13, 'You must be 13 to make an account'),
onChangeAsyncDebounceMs: 500,
onChangeAsync: z.number().refine(
async (value) => {
const currentAge = await fetchCurrentAgeOnProfile()
return value >= currentAge
},
{
message: 'You can only increase the age',
},
),
}}
children={(field) => {
return <>{/* ... */}</>
}}
/>
如果您需要对 Standard Schema 验证进行更精细地控制,可以像这样将 Standard Schema 与回调函数结合使用。
<form.Field
name="age"
validators={{
onChange: ({ value, fieldApi }) => {
const errors = fieldApi.parseValueWithSchema(
z.number().gte(13, 'You must be 13 to make an account'),
)
if (errors) return errors
// continue with your validation
},
}}
children={(field) => {
return <>{/* ... */}</>
}}
/>
<form.Field
name="age"
validators={{
onChange: ({ value, fieldApi }) => {
const errors = fieldApi.parseValueWithSchema(
z.number().gte(13, 'You must be 13 to make an account'),
)
if (errors) return errors
// continue with your validation
},
}}
children={(field) => {
return <>{/* ... */}</>
}}
/>
onChange、onBlur 等回调在表单提交时也会运行,如果表单无效,则提交会被阻止。
表单状态对象有一个 canSubmit 标志,当任何字段无效且表单已被触摸时,此标志为 false(在表单被触摸之前 canSubmit 始终为 true,即使某些字段“技术上”无效,基于其 onChange/onBlur props)。
你可以通过 form.Subscribe 订阅它,并使用其值来,例如,在表单无效时禁用提交按钮(实际上,禁用的按钮不具有可访问性,请改用 aria-disabled)。
const form = createForm(() => ({
/* ... */
}))
return (
/* ... */
// Dynamic submit button
<form.Subscribe
selector={(state) => ({
canSubmit: state.canSubmit,
isSubmitting: state.isSubmitting,
})}
children={(state) => (
<button type="submit" disabled={!state().canSubmit}>
{state().isSubmitting ? '...' : 'Submit'}
</button>
)}
/>
)
const form = createForm(() => ({
/* ... */
}))
return (
/* ... */
// Dynamic submit button
<form.Subscribe
selector={(state) => ({
canSubmit: state.canSubmit,
isSubmitting: state.isSubmitting,
})}
children={(state) => (
<button type="submit" disabled={!state().canSubmit}>
{state().isSubmitting ? '...' : 'Submit'}
</button>
)}
/>
)
您的每周 JavaScript 资讯。每周一免费发送给超过 10 万开发者。