gpt4 book ai didi

c# - ASP.net MVC core RedirectToPage错误-指定根相对路径错误

转载 作者:太空狗 更新时间:2023-10-30 00:48:01 27 4
gpt4 key购买 nike

我想从这样的普通 Controller 操作重定向到 Razor 页面:

return RedirectToPage("Edit", new { id = blogId });

我已经有一个名为“编辑”的 Razor 页面,当正常导航到它时它正在工作: enter image description here

使用 RedirectToPage 我得到以下错误:

InvalidOperationException: The relative page path 'Edit' can only be used while executing a Razor Page. Specify a root relative path with a leading '/' to generate a URL outside of a Razor Page.

知道如何指定该路径吗?

最佳答案

错误已经给了你答案:你应该在开头添加前导“/”并指定一个到你的 razor 页面的相对路径。所以你应该有

return RedirectToPage("/BlogPosts/Edit", new { id = blogId });

代替

return RedirectToPage("Edit", new { id = blogId });

请注意 "/BlogPosts/Edit""Edit" 之间的区别。 RedirectToPage 方法需要一个路径 到您的 razor 页面(根据您的图像,相对路径是 "/BlogPosts/Edit")从根开始文件夹,默认为 Pages

注意:从 Razor Pages 2.0.0 开始,redirecting to "sibling" pages works as well .换句话说,如果您在 /BlogPosts/View 有一个页面,它可以使用 RedirectToPage("Edit", new { id> 重定向到 /BlogPosts/Edit = blogId }),不指定根路径。

关于c# - ASP.net MVC core RedirectToPage错误-指定根相对路径错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51058793/

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