blazor 配合 sweet alert 实现弹窗询问确认
使用JavaScript互操作(JS Interop)来调用JavaScript代码,并且可以在JavaScript弹窗确认后回调到Blazor的C#代码。
前端部分
1 2 3 4 5 6 7 8 9 10 11
| window.showConfirmDialog = async function (title, text, confirmButtonText, cancelButtonText) { const { value: confirmed } = await Swal.fire({ title: title, text: text, icon: 'question', showCancelButton: true, confirmButtonText: confirmButtonText, cancelButtonText: cancelButtonText }); return confirmed ?? false; }
|
window.showConfirmDialog
必须返回一个明确的布尔值,不可以是 null
, undefined
后端部分
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
| @page "/example" @inject IJSRuntime JS
<button @onclick="OnButtonClick">Click Me</button>
@code { private async Task OnButtonClick() { bool? confirmed = await JS.InvokeAsync<bool?>("showConfirmDialog", "Are you sure?", "Do you want to proceed?", "Yes", "No");
if (confirmed == true) { await ConfirmAction(); } else { } }
private async Task ConfirmAction() { } }
|