美文网首页
Antd Form getFieldDecorator id

Antd Form getFieldDecorator id

作者: 王善良_ | 来源:发表于2019-11-08 18:23 被阅读0次
    {
        getFieldDecorator(`person[${index}]`)(<XXX />)
    }
    

    直接用数组字符串作为id,提交的时候会发现,自动会给你转成相应的结构
    比如

    getFieldDecorator(`person[0]`)(<XXX />)
    

    最后会拿到values

    values={person:[值]}
    

    如果上面的index,换成非数字的字符串,这个person会生成obj
    如果上面的index,是纯数组,这个person会生成arr

    相关文章

      网友评论

          本文标题:Antd Form getFieldDecorator id

          本文链接:https://www.haomeiwen.com/subject/jyuwbctx.html