gpt4 book ai didi

c# - 如何给匿名用户一个 ID 以记住他们在数据库中的数据?

转载 作者:太空宇宙 更新时间:2023-11-03 14:58:16 29 4
gpt4 key购买 nike

我想为打开我的网站并将一些商品添加到他们的“购物车”的用户提供一个 ID,即使他们没有注册该服务。只需添加,然后在他们想要结帐时继续注册。如果他们在添加东西后不去结账,然后关闭他们的浏览器,2 天后回来,我想从数据库中检索他们以前的订单。

如何为用户提供唯一的 ID 并在他们下次访问时记住它?

我想我需要使用 cookie,但不知 Prop 体怎么做?

最佳答案

我使用 cookie 和数据库做了类似的事情。因此,在 c# 中,您可以有一个 Basket 表,并且在该表中有一个 UserId 列和一个 ProductId 列。然后从您的 Controller 中,您将拉出用户篮,其中 UserId 是数据库中的用户篮。

设置cookie:

string cookieValue = Guid.NewGuid().ToString();
//Creating a cookie which has the name "UserId"
HttpCookie userIdCookie = new HttpCookie("userId");
userIdCookie.Value = cookieValue;
//This is where you would state how long you would want the cookie on the client. In your instance 2 days later.
userIdCookie.Expires = DateTime.Now.AddDays(3);
Response.SetCookie(userIdCookie);

然后在 Controller 中获取cookie:

public ActionResult Basket()
{
//Getting the cookie which has the name "userId" and assigning that to a variable.
string userId = Request.Cookies.Get("userId").Value;
var basket = _context.Basket.Where(x => x.UserId == userId);
return View(basket);
}

注意:我在这里使用了 Request.Cookies.Get("userId"),因为如果您使用 Response.Cookies.Get("userId"),并且 cookie“UserId”不存在,然后它将为您创建 cookie。

关于c# - 如何给匿名用户一个 ID 以记住他们在数据库中的数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47752909/

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