gpt4 book ai didi

asp.net-core - 如果不满足条件,则从公共(public)异步任务 OnGetAsync() 重定向到不同的 Razor 页面

转载 作者:行者123 更新时间:2023-12-02 00:18:33 24 4
gpt4 key购买 nike

我是“异步”和“任务”方面的新手。我似乎无法在 OnGetAsync() 中使用简单的 if{} else{}。

public async Task OnGetAsync()
{
if (HttpContext.Session.GetString("LoggedStatus") != null)
{
//KEEP GOING
Accounts = await _context.Accounts.ToListAsync();
}
else
{
RedirectToPage("./Index");
}
}

我收到的错误来自“帐户”页面,我试图通过使用“RedirectToPage(./Index”)”(我的主页)来避免接近该页面。我尝试在 RedirectToPage 前面放置“return”字样,但当我这样做时它变成红色。此外,如果满足第一个条件(Session 对象中有一个值),Accounts 页面将显示没有错误。所以,我很确定问题出在我尝试在“else”语句中重定向。

NullReferenceException: Object reference not set to an instance of an object.
OESAC.Pages.Accounts.Pages_Accounts_Index.ExecuteAsync() in Index.cshtml
+
@foreach (var item in Model.Accounts)

上面的错误发生在 Accounts 中,它循环遍历并显示行。我不确定为什么它会到达 Accounts.chstml。

最佳答案

您需要使用 Task<IActionResult>public async Task<IActionResult> OnGetAsync() , 结合 return声明。

public async Task<IActionResult> OnGetAsync()
{
if (HttpContext.Session.GetString("LoggedStatus") != null)
{
//KEEP GOING
Accounts = await _context.Accounts.ToListAsync();

return Page();
}
else
{
return RedirectToPage("./Index");
}
}

Microsoft 的文档在这里对此有一些很好的阅读:


根据评论,您可以运行此 w/o 异步。

public IActionResult OnGet()
{
if (HttpContext.Session.GetString("LoggedStatus") != null)
{
//KEEP GOING
Accounts = _context.Accounts.ToList();

return Page();
}
else
{
return RedirectToPage("./Index");
}
}

关于asp.net-core - 如果不满足条件,则从公共(public)异步任务 OnGetAsync() 重定向到不同的 Razor 页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56280282/

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