添加链接
link管理
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement . We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account
  • I have searched the issues of this repository and believe that this is not a duplicate.
  • What problem does this feature solve?

    表单需要收集一个对象数组:

    fileds:[{
      name:'a',
      age:14
      name:'b',
      age:15
      name:'c',
      age:16
    

    What does the proposed API look like?

    form.item的name可以做如下设置

    name={['fileds[0]','name']}
    name={['fileds[0]','age']}
    name={['fileds[1]','name']}
    name={['fileds[1]','age']}