是否可以在MVC控制器返回中调用模式弹出窗口(javascript)

时间:2018-09-25 14:48:52

标签: javascript asp.net-mvc asp.net-core popup bootstrap-modal

我想知道是否可以在控制器的return方法中调用JavaScript方法(将Modal显示为弹出窗口)。

string name = home.entityDetails.Name;
if (name == " " || name == null)
{
    return PartialView("NotFound");
}

在调用return PartialView("Not found");的地方,是否可以返回显示模式的JavaScript方法?

1 个答案:

答案 0 :(得分:1)

处理此问题的最佳方法是在视图内使用Bootstrap模态和javascript。

由于您使用的是部分视图,因此我假设您有另一个父视图,例如索引视图。您可以在父视图内使用javascript附加html作为模态,然后从父视图打开“部分视图”。这是一个相同的例子。

Index.cshtml

<div class="container">
        <a href="@Url.Action("NotFound", "Name")" id="NotFound" class="btn btn-primary">
</div>

    <div class="modal fade" id="NotFound-Model" tabindex="-1" role="dialog" aria-    labelledby="myModalLabel" aria-hidden="true">
        <div class="modal-dialog">
            <div class="modal-content">
                <div class="modal-header">
                    <button type="button" class="close" data-dismiss="modal" aria-    label="Close"><span aria-hidden="true">&times;</span></button>
                    <h4 class="modal-title">Add Holiday</h4>
                </div>
                <div class="divForNotFound">
                </div>
            </div>
        </div>
    </div>

JAVASCRIPT处理Bootstrap模式

    $(document).ready(function () {
            $('#NotFound').click(function (event) {
                event.preventDefault();
                $.get(this.href, function (response) {
                   $('.divForNotFound').html(response);
               });
                $('#Add-NotFound').modal({
                    backdrop: 'static',
                }, 'show');
            });
    }

假设您拥有部分视图NotFound.cshtml

@model Name.NotFoundModel
using (Ajax.BeginForm("NotFound", "Name", new AjaxOptions { HttpMethod = "POST", UpdateTargetId = "div-record", OnSuccess = "$('.close').click()" }))
{
    <div class="modal-body">
        <table class="table-bordered table-responsive table table-striped">
            <tr class="col-lg-12">
                <th class="label-primary">
                    @Html.Label("NotFoundLabel")
                </th>
            </tr>
        </table>
    </div>
}

希望有帮助!