gpt4 book ai didi

c# - 在 ASP.NET 中检查 Cookie 的值会导致对象引用空异常

转载 作者:行者123 更新时间:2023-11-30 23:25:05 25 4
gpt4 key购买 nike

当我尝试访问 cookie 时,出现以下异常:

Object reference not set to an instance of an object.

这是有问题的行:

if (Request.Cookies["selectBoxValue"].Value != null)

Controller

[Authorize]
public ActionResult Index()
{
if (Request.Cookies["selectBoxValue"].Value != null)
{
HttpCookie groupId = new HttpCookie("selectBoxValue");
groupId = Request.Cookies["selectBoxValue"];

// Collect all comments connected to current group
int t = Convert.ToInt32(groupId.Value);
pv.ListofComments = db.Comments.Where(dp => dp.GroupID == t).ToList();

// Show only groups connected to current user
var CurrentUser = User.Identity.GetUserId();
var groupUser = db.GroupUsers.Where(u => u.ApplicationUserId == CurrentUser).Select(gr => gr.GroupId).ToList();
pv.GroupList = db.Groups.Where(g => groupUser.Contains(g.Id));
return View(pv);

}

最佳答案

您的错误是因为该链中的某些内容不存在:

if (Request.Cookies["selectBoxValue"].Value != null)

要检查的事情:

var myCookie = Request.Cookies["selectBoxValue"];
myCookie!= null;
myCookie.Length > 0;

很可能您没有在名为 selectBoxValueRequest 中传入 cookie。因为 selectBoxValue(从它的名字看)听起来像是在你的表单上的东西,我很好奇你为什么要为它检查 cookie?如果它是来自上一页(不是将请求发送到服务器的页面)的持久值,则将其称为比 selectBoxValue 更直观的名称。

了解更多有关如何编写 cookie 和读取 cookie 的信息;看这个Stack Overflow answer .

如果您希望用户有一个名为 selectBoxValue 的 cookie 而他们没有,那么您会遇到一个特定问题:无论您在何处设置该 cookie,它都不会发送给用户响应

如果您同意这一点(也就是说,某些代码路径需要 cookie 而其他代码路径则不需要),那么如果该 cookie 不存在,您可以将您正在玩的对象设置为一个合理的值:

int defaultGroupId = 1;
var obj = Request.Cookies["selectBoxValue"] ?? defaultGroupId;

您的代码也有一些问题:

if (Request.Cookies["selectBoxValue"].Value != null)
{
HttpCookie groupId = new HttpCookie("selectBoxValue"); //why create one?
groupId = Request.Cookies["selectBoxValue"];

// Collect all comments connected to current group
int t = Convert.ToInt32(groupId.Value);
}

为什么只创建 cookie 而不使用它?

只有当您要将它发送到某个地方时,才会创建 Cookie。所以在这里你应该这样写:

int defaultGroupId = 1;
int groupId = defaultGroupId;
if (Request.Cookies["selectBoxValue"] != null) {
var parsed = Int.TryParse(Request.Cookies["selectBoxValue"].Value, out groupId);
if (!parsed) {
// the incoming cookie value wasn't an integer or couldn't be parsed to integer. In this case do you want to set it to an appropriate value (say whatever comes out of your query?
}
//At this point you either have a valid `groupId` or you have your `defaultGroupId` so you can use `groupId` normally.

关于c# - 在 ASP.NET 中检查 Cookie 的值会导致对象引用空异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37459244/

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