如何从 blazor webassembly 组件代码关闭 bootstrap 模式?

How to close a bootstrap Modal from a blazor webassembly component code?

我试图找到一种方法来从 blazor webassembly 组件中的 C# 方法关闭 bootstrap 模态。

Bellow 是我想出的解决方案。 它涉及使用 IJSRuntime 调用 javascript 方法来操作 bootstrap 模态。 我相信还有其他方法可以解决这个问题。

bootstrap模态可以通过javascript关闭:

创建一个 javascript wwwroot/js/site.js 文件,代码为:

export function CloseModal(modalId) {
    $(modalId).modal('hide');
}

在正文末尾包含 index.html 中的脚本:

...
<script src="js/site.js"></script>
</body>

存在调用模态的父组件:

ParentComponent.razor

<!-- Button trigger modal -->
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#exampleModal">
  Launch demo modal
</button>

<ModalComponent />

@code {

}

然后就是包含模态的模态组件: (我们正在使用 IJSRuntime 从 C# 代码调用 js)

ModalComponent.razor

@inject IJSRuntime js

<!-- Modal -->
<div class="modal fade" id="exampleModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
  <div class="modal-dialog" role="document">
    <div class="modal-content">
      <div class="modal-header">
        <h5 class="modal-title" id="exampleModalLabel">Modal title</h5>
        <button type="button" class="close" data-dismiss="modal" aria-label="Close">
          <span aria-hidden="true">&times;</span>
        </button>
      </div>
      <div class="modal-body">
        ...
      </div>
      <div class="modal-footer">
        <button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
        <button type="button" class="btn btn-primary">Save changes</button>
      </div>
    </div>
  </div>
</div>

@code {

    IJSObjectReference JsObjectRef { get; set; }
    protected override async Task OnAfterRenderAsync(bool first)
    {
        JsObjectRef = await js.InvokeAsync<IJSObjectReference>("import", "/js/site.js");
    }
    
    async Task SomeMethod(){
     
    //some logic

    //call the js function to close the modal
    await JsObjectRef.InvokeVoidAsync("CloseModal", "#exampleModal");


    }
}

现在可以从 C# 代码关闭模式,例如在调用提交方法时。

这个逻辑对我有用。 我敢肯定还有其他更好的解决方案,不过我真的希望它能帮助有需要的人。

和平