4

在之前的 ASP.NET MVC 中,您可以通过在web.config:

<anonymousIdentification enabled="true" />

我们可以使用匿名身份识别,即Request.AnonymousID识别您网站上未经身份验证的用户。当您需要将购物车中的商品保存在访客面前时,这对于电子商务体验非常有用。

更多信息:http ://www.toplinestrategies.com/blogs/net/anonymous-identification-mvc

问题:

Request.AnonymousID来自System.Web,它与 ASP.NET Core 一起消失了。

问题:

  1. 我们如何在 ASP.NET Core MVC 中启用匿名识别?
  2. 如果 1 不可能,您将如何“识别”您网站上的访问者?

注意:我不想使用 Sessions 来存储对象。

4

1 回答 1

3

我自己编写了一个解决方案。它是模仿旧行为的 ASP.NET Core 的中间件。

您可以在 NuGet 上找到作为AnonymousId (ReturnTrue.AspNetCore.Identity.Anonymous)的包,并在GitHub上找到源代码。

我是 ASP.NET Core 整个世界的新手,所以请让我知道任何错误、改进、建议、更正......

基本用法是:

public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory)
{
    app.UseAnonymousId();
    ....
}

public class HomeController : Controller
{
  public ViewResult Index()
  {
      string anonymousId = Request.Headers["AnonymousId"];
      ....
  }
}
于 2017-06-28T07:24:29.293 回答