模式视图重新加载内容(启动MVC ASP.NET)

Modal View Reload Content (Bootstrap MVC ASP.NET)

本文关键字:启动 MVC NET ASP 加载 视图 新加载 模式      更新时间:2024-06-13

Aloha,我在ASP.NET MVC4应用程序中使用Bootstrap v3.3.6来显示使用模式视图的弹出窗口。

我的模态示例:

<div class="modal-contents modal-view content-wrapper">
    <div class="modal-header">
    <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
    </div>
    <div class="modal-body content-wrapper">
    </div>
</div>
<script type="text/javascript">
    $(function () {
        $('#approve-btn').click(function () {
            $('#modal-container').modal('hide');
        });
    });
</script>

要加载模式,我使用类似的Html.ActionLink

@Html.ActionLink("SomeText", "SomeAction", "SomeController", null , new { @class="modal-link"})

它触发了我的布局页面中的脚本:

<script type="text/javascript">
     $(function () {
         // Initialize modal dialog
         // attach modal-container bootstrap attributes to links with .modal-link class.
         // when a link is clicked with these attributes, bootstrap will display the href content in a modal dialog.
         $('body').on('click', '.modal-link', function (e) {
             e.preventDefault();
             $(this).attr('data-target', '#modal-container');
             $(this).attr('data-toggle', 'modal');
             console.log(this);
         });
         // Attach listener to .modal-close-btn's so that when the button is pressed the modal dialog disappears
         $('body').on('click', '.modal-close-btn', function () {
             $('#modal-container').modal('hide');
         });
         //clear modal cache, so that new content can be loaded
         $('.modal').on('hidden.bs.modal', function () {
             $(this).removeData('bs.modal');
         });
         $('#CancelModal').on('click', function () {
             return false;
         });
     });
</script>

最后是我的_Layout 中的占位符

<div id="modal-container" class="modal fade" tabindex="-1" role="dialog">
    <div class="modal-content modal-view">
    </div>
</div>

这一切都是基于这一点设计的:http://www.codeproject.com/Tips/826002/Bootstrap-Modal-Dialog-Loading-Content-from-MVC-Pa工作得很好。直到我在同一个视图中打开了一个模态之后尝试打开一个模态。然后我会发现模态包含与以前相同的数据
在尝试了以下所有建议后:
在模态中重新加载内容(twitter引导程序)
我感觉问题出在#modal容器的填充上。链接是由脚本以正确的方式完成的,正如我可以说的那样,通过在chrome中调试
如果我重新加载整个页面,模式视图将接受新内容。但由于我使用选项卡(也依赖于Bootstrap),重新加载不是一个选项,因为我会失去当前选项卡的选择。

我对网络开发很陌生,所以如果你有一些想法的话,那就太好了。

您可以使用

ModelState.Clear();

用于清除控制器中的模型状态。

希望它能帮助你。