gpt4 book ai didi

c# - 如何在 Blazor 服务器中设置同意 cookie

转载 作者:行者123 更新时间:2023-12-01 20:19:09 30 4
gpt4 key购买 nike

我有一个带有 Identity 的 Blazor 3.1 应用程序,我想在其中实现 cookie 同意横幅。

在经典的 ASP .NET Core 中,有一个很好的 cookie 同意横幅模板。

    @using Microsoft.AspNetCore.Http.Features

@{
var consentFeature = Context.Features.Get<ITrackingConsentFeature>();
var showBanner = !consentFeature?.CanTrack ?? false;
var cookieString = consentFeature?.CreateConsentCookie();
}

@if (showBanner)
{
<div class="container">
<div id="cookieConsent" class="alert alert-info alert-dismissible fade show" role="alert">
Use this space to summarize your privacy and cookie use policy. <a class="alert-link" asp-area="" asp-controller="Home" asp-action="Privacy">Learn More</a>.
<button type="button" class="accept-policy close" data-dismiss="alert" aria-label="Close" data-cookie-string="@cookieString">
<span aria-hidden="true">Accept</span>
</button>
</div>
</div>
<script>
(function () {
var button = document.querySelector("#cookieConsent button[data-cookie-string]");
button.addEventListener("click", function (event) {
document.cookie = button.dataset.cookieString;
}, false);
})();
</script>
}

如果您将此部分放置在布局中,您就拥有了一个完美的工作 cookie 同意横幅。如果配置正确,用户甚至无法登录身份框架,除非他们同意。

由于 Blazor 不知道 HttpContext,因此此模板不起作用。是否有样板方法或者我必须自己创建此功能?

最佳答案

我昨天刚刚在 Blazor 3.1 应用程序中解决了这个问题!我选择使用 JS Interop,它非常简单。

我的 Web 应用程序有多个前端,包括 MVC、Razor Pages 和 Blazor,因此您可以打开主解决方案文件,然后查看 Blazor 项目:

https://github.com/shahedc/NetLearnerApp

Blazor项目中需要注意的事项;

  • 我将部分 View 实现为 Razor 组件

  • 在共享文件夹中查找/_CookieConsentPartial.razor

  • MainLayout.razor 使用此 razor 组件

  • _Host.cshtml 文件包含我的 js 互操作文件

  • 在 wwwroot 中查找 netLearnerJsInterop.js

  • js Interop 文件包含 document.cookie 用法

  • razor组件使用JSRuntime.InvokeVoidAsync调用JS方法接受GDPR同意消息并存储cookie

关于c# - 如何在 Blazor 服务器中设置同意 cookie,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59529950/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com