在mvc中多次调用Ajax请求

时间:2017-02-20 13:19:07

标签: jquery ajax asp.net-mvc asp.net-core asp.net-core-mvc

每当我尝试在bootstrap模式上渲染局部视图时,渲染部分视图的ajax请求就会被多次调用。我在主视图上点击按钮时发出ajax请求。

主视图: - 渲染主视图时,我也渲染了局部视图,如下所示

<div class="modal fade" id="surveyPreviewModal" data-backdrop="static" data-keyboard="false" tabindex="-1" role="dialog" aria-labelledby="surveyPreviewLabel" aria-hidden="true">
    <div class="modal-lg modal-dialog">
        <div class="modal-content" id="surveyPreviewContent">
            <div class="modal-header">
                <button type="button" class="close" data-dismiss="modal" aria-hidden="true">
                    &times;
                </button>
                <h4 class="modal-title" id="surveyPreviewLabel">Survey Preview</h4>

            </div>
            <div class="modal-body" id="surveyPreviewBody">
                @Html.Partial("_SurveyPreview",new LMS_TraineeSurveyPaginationViewModel())
            </div>
        </div>
    </div>
</div>

这是主视图上的按钮,用于渲染模态

中的局部视图
<button id="btnSurveyPreview" class="btn btn-primary" data-toggle="modal" data-target="#surveyPreviewModal" data-surveyID="@ViewBag.SurveyID">
Survey Preview
</button>

在局部视图中,我编写了以下代码。在bootstrap模态show事件中,我在部分视图中调用SurveyPreview(js function)

@model LMS_TraineeSurveyPaginationViewModel
$(document).ready(function () {

    $('#surveyPreviewModal').on('show.bs.modal', function (e) {

        surveyID = $(e.relatedTarget).attr('data-surveyID');

        SurveyPreview(@SurveyPageTypePageNumber.StartPage,null);

    });
})

SurveyPreview function我正在制作ajax请求,如下所示

function SurveyPreview(page,btnID) {

   ....Get SurveyID and page code.....

 $.post('@Url.Action("SurveyPreview", "Survey")', { SurveyID : surveyID, page : page },
             function (data) {

                 $('#surveyPreviewBody').html('');
                 $('#surveyPreviewBody').html(data);

                 SetProgressBar(page,'@(Model==null?0: Model.Pager.TotalPages)');

             }).fail(function () {
                 alert("error in GetTraineeSurvey");
             }).success(function () {

             });
}

SurveyPreview控制器方法我将返回与模型相同的局部视图,并将结果附加到模态体。

public PartialViewResult SurveyPreview(int SurveyID, int page)
{
--- some code--
return PartialView("_SurveyPreview", viewModel);
}

让我第一次点击按钮,然后模态打开,关闭并重新打开它后,ajax请求两次,然后再次关闭并重新打开ajax请求三次。每次计数器增加

此外,我在局部视图上有下一个/上一个按钮,它们呈现相同的局部视图。

这里发生了正确的事件顺序吗?或者我错过了什么 在这?

对此有任何帮助表示赞赏!

1 个答案:

答案 0 :(得分:1)

每次发出AJAX请求时,都会在按钮上附加多个点击处理程序。我建议你将这个javascript 移动到部分视图以便它只执行一次。例如,您可以将其放在主视图中:

<script>
    $(document).ready(function () {
        $('#surveyPreviewModal').on('show.bs.modal', function (e) {
            surveyID = $(e.relatedTarget).attr('data-surveyID');
            SurveyPreview(@SurveyPageTypePageNumber.StartPage, null);
        });
    });

    function SurveyPreview(page, btnID) {

        ....Get SurveyID and page code.....

        $.post('@Url.Action("SurveyPreview", "Survey")', { SurveyID : surveyID, page : page },
             function (data) {
                 $('#surveyPreviewBody').html(data);
                 var totalPages = $('#totalPages').attr('data-pages');
                 SetProgressBar(page, totalPages);
             }).fail(function () {
                 alert("error in GetTraineeSurvey");
             }).success(function () {
        });
    }
</script>

当然在您的部分内部,您可以根据视图模型添加一个<div>,其中包含总页数:

<span id="totalPages" data-pages="@(Model==null ? 0 : Model.Pager.TotalPages)"></span>