createForm创建时机?
#1782
Replies: 1 comment 1 reply
-
你可能需要先去理解 form 的作用是什么,再来思考这个问题。 |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
我看到https://react.formilyjs.org/api/components/field 这个代码示例的createForm是在函数外面的 是否正确?
import React from 'react'
import { createForm } from '@formily/core'
import { FormProvider, Field } from '@formily/react'
import { Input } from 'antd'
const form = createForm()
export default () => (
<Field name="input" component={[Input, { placeholder: 'Please Input' }]} />
)
Beta Was this translation helpful? Give feedback.
All reactions