码迷,mamicode.com
首页 > Web开发 > 详细

ReactJS中的自定义组件

时间:2019-11-23 14:38:50      阅读:78      评论:0      收藏:0      [点我收藏+]

标签:定义   NPU   fir   bind   each   input   bsp   http   学习   

可控自定义组件:

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
        <script src="js/react.js"></script>
        <script src="js/react-dom.js"></script>
        <script src="js/browser.min.js"></script>
    </head>
    <body>
        <script type="text/babel">
            var Radio=React.createClass({
                getInitialState:function(){
                    return {
                        value:this.props.defaultValue
                    };
                },
                handleChange:function(event){
                    if(this.props.onChange){
                        this.props.onChange(event);
                    }
                    this.setState({
                        value:event.target.value
                    });
                },
                render:function(){
                    var children=[];
                    var value=this.props.value||this.state.value;
                    React.Children.forEach(this.props.children,function(child,i){
                        var label=<label key={i}>
                            <input type="radio" name={this.props.name} value={child.props.value} checked={child.props.value==value} onChange={this.handleChange}/>
                            {child.props.children}
                            <br/>
                    </label>;
                    children.push(label);
                    }.bind(this));
                    return <span>{children}</span>;
                }
            });
            var MyForm=React.createClass({
                getInitialState:function(){
                    return ({my_radio:"B"});
                },

                handleChange:function(event){
                    this.setState({
                        my_radio:event.target.value
                    });
                },
                submitHandler:function(event){
                    event.preventDefault();
                    alert(this.state.my_radio);
                },
                render:function(){
                    return (
                        <form onSubmit={this.submitHandler}>
                        <Radio value={this.state.my_radio} name="my_radio" onChange={this.handleChange}>
                            <option value="A">First option</option>
                            <option value="B">Second option</option>
                            <option value="C">Third option</option>
                        </Radio>
                        <button type="submit">Speak</button>
                        </form>
                    )
                }
            });

            ReactDOM.render(<MyForm></MyForm>,document.body);
        </script>
    </body>
</html>

不可控的自定义组件:

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
        <script src="js/react.js"></script>
        <script src="js/react-dom.js"></script>
        <script src="js/browser.min.js"></script>
    </head>
    <body>
        <script type="text/babel">
            var Radio=React.createClass({
                getInitialState:function(){
                    return {
                        value:this.props.defaultValue
                    };
                },
                handleChange:function(event){
                    if(this.props.onChange){
                        this.props.onChange(event);
                    }
                    this.setState({
                        value:event.target.value
                    });
                },
                render:function(){
                    var children=[];
                    var value=this.props.value||this.state.value;
                    React.Children.forEach(this.props.children,function(child,i){
                        var label=<label>
                            <input type="radio" name={this.props.name} value={child.props.value} checked={child.props.value==value} onChange={this.handleChange}/>
                            {child.props.children}
                            <br/>
                    </label>;
                    children[‘label‘+i]=label;
                    }.bind(this));
                    return <span>{children}</span>;
                }
            });
            var MyForm=React.createClass({
                handleSubmit:function(event){
                    event.preventDefault();
                    alert(this.refs.radio.state.value);
                },
                render:function(){
                    return (
                        <form onSubmit={this.handleSubmit}>
                        <Radio ref="radio" name="my_radio" defaultValue="B">
                            <p value="A">First</p>
                            <option value="B">Second option</option>
                            <option value="C">Third option</option>
                        </Radio>
                        <button type="submit">Speak</button>
                        </form>
                    )
                }
            });

            ReactDOM.render(<MyForm></MyForm>,document.body);
        </script>
    </body>
</html>
<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
        <script src="js/react.js"></script>
        <script src="js/react-dom.js"></script>
        <script src="js/browser.min.js"></script>
    </head>
    <body>
        <script type="text/babel">
            var Radio=React.createClass({
                getInitialState:function(){
                    return {
                        value:this.props.defaultValue
                    };
                },
                handleChange:function(event){
                    if(this.props.onChange){
                        this.props.onChange(event);
                    }
                    this.setState({
                        value:event.target.value
                    });
                },
                render:function(){
                    var children=[];
                    var value=this.props.value||this.state.value;
                    React.Children.forEach(this.props.children,function(child,i){
                        var label=<label>
                            <input type="radio" name={this.props.name} value={child.props.value} checked={child.props.value==value} onChange={this.handleChange}/>
                            {child.props.children}
                            <br/>
                    </label>;
                    children[label+i]=label;
                    }.bind(this));
                    return <span>{children}</span>;
                }
            });
            var MyForm=React.createClass({
                handleSubmit:function(event){
                    event.preventDefault();
                    alert(this.refs.radio.state.value);
                },
                render:function(){
                    return (
                        <form onSubmit={this.handleSubmit}>
                        <Radio ref="radio" name="my_radio" defaultValue="B">
                            <p value="A">First</p>
                            <option value="B">Second option</option>
                            <option value="C">Third option</option>
                        </Radio>
                        <button type="submit">Speak</button>
                        </form>
                    )
                }
            });

            ReactDOM.render(<MyForm></MyForm>,document.body);
        </script>
    </body>
</html>

本人刚建立一个前端学习交流群,群内有很多干货适合前期和中期需要解决的问题,欢迎给位进群一起探讨互相帮助907694362祝各位在前端的道路上一帆风顺!!

 

ReactJS中的自定义组件

标签:定义   NPU   fir   bind   each   input   bsp   http   学习   

原文地址:https://www.cnblogs.com/xsd1/p/11917746.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!