如何在React中使用一个按钮提交多个发布请求?

时间:2019-09-06 20:49:19

标签: javascript jquery reactjs

我正在尝试将我的Jquery代码转换为React。我有一个表单,在提交时会创建到不同站点的多个帖子请求,并在与每个站点相对应的“卡片”中为每个站点生成数据。

我为表格创建了一个组件。我也有一个handleSubmit事件,但这仅发出一个获取请求。我想一键向多个站点发出多个获取请求。

handleSubmit(event) {
        event.preventDefault();
        this.setState({
            input: event.target.value
        })
        const data = new FormData(event.target);
        fetch('/d2s2/L1000', {
            method: 'POST',
            body: data
        })
    }
render () {
        return (
            <div>
                <form class="form-inline" role="form">

                            <div class="form-group" style="text-align:center;">
                                        <select id="memoryType" class="form-control firstList">

                                            <option value="drug" selected="selected">Drug</option>
                                            <option value="disease">Disease</option>
                                        </select>
                                    </div>
                                <div class="form-group">
                                    <select id="drugInput" class="form-control search-input secondList" name="drug">

                                    </select>

                                </div>
                                <button class="form-control" id="submit"><i class="fas fa-search"></i></button>

                            </form>

           </div>
        )
    }

这是我的Jquery:

$("#submit").click(function(e) {
    var selectedOption = $('#memoryType option:selected').val();
    var text= $("#drugInput option:selected").val();
    var search = JSON.stringify({"input": text});
    $('.post-load').show();


    if (selectedOption.toLowerCase() == "drug") {
$.post("/d2s2/L1000", search, function(data) {
         console.log(data);
         $(".card-1").html(data);
         $('.loader1').fadeOut('fast');
     }).fail( function(xhr, textStatus, errorThrown) {
        $(".card-1 .card-text").html("No significant signatures found");
        $('.loader1').fadeOut('fast');
    })

     $.post("/d2s2/creeds_drugs", search, function(data) {
         console.log(data);
         $(".card-2").html(data);
         $('.loader2').fadeOut('fast');
     }).fail( function(xhr, textStatus, errorThrown) {
        $(".card-2 .card-text").html("No significant signatures found");
        $('.loader2').fadeOut('fast');
    })
     $.post("/d2s2/creeds_diseases", search, function(data) {
         console.log(data);
         $(".card-3").html(data);
         $('.loader3').fadeOut('fast');
     }).fail( function(xhr, textStatus, errorThrown) {
        $(".card-3 .card-text").html("No significant signatures found");
        $('.loader3').fadeOut('fast');
    })
     $.post("/d2s2/geneshot", search, function(data) {
         console.log(data);
         $(".card-4").html(data);
         $('.loader4').fadeOut('fast');
     }).fail( function(xhr, textStatus, errorThrown) {
        $(".card-4 .card-text").html("No significant signatures found");
        $('.loader4').fadeOut('fast');
    })

当我单击“提交”按钮时,所有卡都应向各自的端点发出发布请求。

1 个答案:

答案 0 :(得分:0)

您可以为要请求的每个站点声明一个状态,并像下面这样分别处理请求:

state = {
    site1: {},
    site2: {}
}

requestSite1 = data => {
    fetch('site1Url', {
        method: 'POST',
        body: data
    }).then(res => this.setState({ site1: res }))
}

requestSite2 = data => {
    fetch('site2Url', {
        method: 'POST',
        body: data
    }).then(res => this.setState({ site2: res }))
}

async handleSubmit(event) {
    event.preventDefault();
    this.setState({
       input: event.target.value
    })
    const data = new FormData(event.target);
    await this.requestSite1(data);
    await this.requestSite2(data);
}

并将状态作为道具传递给您的Card组件,例如:

<Card site1Data={this.state.site1} site2Data={this.state.site2} />