外部组件的React-bootstrap调用方法

时间:2015-05-21 06:56:01

标签: forms modal-dialog reactjs react-bootstrap

我正在使用react-bootstrap来启动模态表单。

为此,我在我调用的产品组件中创建了一个模态组件PopupForm,一个表单组件ProductForm,一个产品组件

<ModalTrigger 
    modal={<PopupForm form={<ProductForm ref="pform" data={this.props.prod_data} />}/>}>
       <Button bsStyle='primary' bsSize='small' style={{marginRight:'5px'}} >
            <span className="glyphicon glyphicon-pencil" />
       </Button>
</ModalTrigger>

PopupForm

var PopupForm = React.createClass({
    render: function(){
        return (
            <Modal {...this.props} bsStyle='primary' 
                   style={{width:200}} title='Edition' animation={false}>
            <div className='modal-body'>
                {this.props.form}
            </div>
            <div className='modal-footer'>
              <Button onClick={this.props.form.submit()}>Editer</Button>
              <Button onClick={this.props.onRequestHide}>Close</Button>
            </div>
          </Modal>
        )
    }
});

在这个onClick编辑器上,我想调用submit组件的ProductForm方法,ProductForm组件发送到PopupForm道具表单,我将其显示为{this.props.form},但我无法调用方法{this.props.form.submit()} 实际上我想使用模态按钮来触发ProductForm方法,如果不可能我会在ProductForm中使用提交按钮。

这是我的ProductForm

var ProductForm = React.createClass({

    componentDidMount: function() {
        this.props.submit = this.submit;
    },


    getInitialState: function () {
        return {canSubmit: false};
     },

    enableButton: function () {
      this.setState({
        canSubmit: true
      });
    },
    disableButton: function () {
      this.setState({
        canSubmit: false
      });
    },
    submit: function (model) {
      alert('ok');
    },
    render: function () {
      return (

            <Formsy.Form className="" name="test" onValidSubmit={this.submit} onValid={this.enableButton} onInvalid={this.disableButton}>


              <CsInput value={this.props.data.name} 
                label="Nom" id="product_name" 
                name={this.props.data.name}
                validations={{matchRegexp: /^[A-Za-z0-9]{1,30}$/}} 
                validationError={validations_errors[1]} required/>



              {/*<button type="submit" disabled={!this.state.canSubmit}>Submit</button>*/}


            </Formsy.Form>
      );
    }
  });

提前致谢。

1 个答案:

答案 0 :(得分:2)

如果您有嵌套组件,可以像这样调用另一个函数:

儿童:

test.bat "c:\"

<强>父:

var Component1 = React.createClass({
    render: function() {
        return (
            <div><button onClick={this.props.callback}>click me</button></div>
        )
    }
})

在你的情况下也一样。你的代码中不是很清楚,所以我无法帮助你自己编写代码。如果你对此感到麻烦,请以层次结构方式发布整个代码,以便更具可读性。