如何在ReactJS中添加按钮组件?

时间:2018-05-15 13:16:30

标签: javascript reactjs

所以我成功地从数组'values': ["hello", "world]渲染组件,但是我想添加一个按钮组件,这样每次点击它时,都会显示另一个空字段。这就是目前的情况:

Screenshot

但是我希望它有一个按钮,每次我点击它时,它会渲染另一个空组件来输入文本。在我的array_node.jsx文件中直接添加一个按钮组件是否正确?到目前为止我正在做的是什么?我还需要在newInput: function()旁边添加某种var AddButton = React.createClass({})吗?谢谢!

array_node.jsx:

{...
    childChange: function(name, valid, value) {

        // update state
        this.state.values = this.props.values;

        // Using regex to find last digits from 0-9
        var pattern = /[0-9]/;
        var match = name.match(pattern);

        // Parse char into int
        var i = parseInt(match);

        this.state.values[i] = value;
        this.setState(this.state);

        // Call parent callback
        this.props.callback(
            this.props.name,
            this.props.node.valid(this.state.values),
            this.state.values
        );
    },
    addItem: function(values){
    },

        render: function() {
            var that = this;

            return (
                <div id = "form">
                {this.props.values.map(function(v, i) {
                    return (
                        <div>
                        {(that.props.node.get().constructor.name === "Parent") ?
                        <ParentComponent
                            name={that.props.name + i}
                            key={i}
                            timer={that.props.timer}
                            callback={that.childChange}
                            values={v}
                            newParent={that.props.node.get()}
                        />
                        :
                        <NodeComponent
                            name={that.props.name + i}
                            key={i}
                            timer={that.props.timer}
                            callback={that.childChange}
                            value={v}
                            newNode={that.props.node.get()}
                        />
                        }
                        </div>
                    )
                })}
                </div>
           )
        }
    });
    return ArrayNodeComponent


var AddButton = React.createClass({
    addItem: function() {

    },

    render: function() {

        return(
        <div id="create_new_entry">

        </div>
        )
    }
})

formatoc:

var props = {
    'name' : 'form',
    'timer' : 1500,
    'callback' : function(id, validity, value) {console.log(id, validity, value);},
    'values': ["hello", "world"],

    'node' : new FormatOC.ArrayNode({"__array__":"unique", "__type__":"string","__minimum__":1,"__maximum__":200,"__component__":"Input"},
    )
}

React.render(React.createElement(ArrayNodeComponent, props), document.getElementById('react-component'));

1 个答案:

答案 0 :(得分:2)

您可以在渲染功能中向表单添加一个按钮。 然后听取点击并在值列表中添加一个新的空元素。

如果您希望将更改传播到某个父组件,则必须从父组件传递onClick处理程序并更新其中的值列表。

&#13;
&#13;
import { Component } from 'react';

class ArrayNodeComponent extends Component {

  // other code ...
  // like your initialisation of your state
  // and other functions

  addEmptyItem() {
    const { values } = this.state;
    this.setState({
      values: [...values, ""]
    });
  }

  render() {
    return (
      <form id="test">
        {
          /* this is your values map routine, shortened */
          this.props.values.map(function(v, i) { /*...*/ })
        }
        <button onClick={() => this.addEmptyItem()}>Add</button>
      </form>
    );
  }

}
&#13;
&#13;
&#13;

顺便说一下,在这个简单的场景中,创建自定义Button组件是没有意义的。