热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

antdesigngetFieldDecorator无法获取自定义组件的值

自定义组件

自定义组件



1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
class CheckList extends React.Component {

  state = {

    checkedList: [],

    indeterminate: false,

    checkAll: false

  };

  OnChange= (checkedList) => {

    // console.log(this.props.dataitem.action.length);

    console.log(checkedList);

    this.setState({

      checkedList,

      indeterminate: !!checkedList.length && (checkedList.length
      checkAll: checkedList.length === this.props.dataitem.action.length

    });

  }

  OnCheckAllChange= (e) => {

    this.setState({

      checkedList: e.target.checked

        ? this.props.dataitem.action.map((item, key) => {

          return item.value;

        })

        : [],

      indeterminate: false,

      checkAll: e.target.checked

    });

  }

  render() {

    const dataitem = this.props.dataitem;

    return (

     

        marginBottom: '1em'

      }}>

       


         

            {dataitem.title}{dataitem.action.length}

         


       


       


       

     


    );

  }

}

使用getFieldDecorator的引用

1
{getFieldDecorator('node_id')()}

提交



1
2
3
4
5
6
7
handleSubmit = (e) => {

    e.preventDefault();

    // console.log('submit');

    this.props.form.validateFields((err, fieldsValue) => {

        console.log(fieldsValue);

    });

  }

console:
node_id:undefined


   



推荐阅读
author-avatar
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有