gpt4 book ai didi

asp.net-mvc - 默认情况下不重定向到 Controller 的索引操作方法

转载 作者:行者123 更新时间:2023-12-02 01:42:14 26 4
gpt4 key购买 nike

最近我创建了 Controller 调用 DashboardVideos和一个名为 Index 的操作方法.

之后 AddUpdate ,我正在使用它重定向到索引页面
RedirectToAction("Index", "DashboardVideos") .

但是这段代码将它重定向到 /DashboardVideos/它说

HTTP 错误 403.14 - 禁止
Web 服务器配置为不列出此目录的内容。


所以问题是默认情况下它应该加载 Index页面当我说/Dashboard但它不是,相同的 url 模式与所有其他 Controller 一起工作(所以我认为路由模式没有任何问题)。

任何帮助,将不胜感激。

代码:

 public class DashboardVideosController : BaseController
{
private readonly IDashboardVideosComponent socialTagComponent;

public DashboardVideosController()
{
socialTagComponent = ComponentFactory.Get<IDashboardVideosComponent>();
}

// GET: DashboardVideos
public ActionResult Index()
{
return View();
}

[HttpPost]
public ActionResult AddUpdate(DashboardVideosModel socialTagChannel)
{
//Save data to database
return RedirectToAction("Index", "DashboardVideos");
}
}

最佳答案

如果两个 Action 在同一个 Controller 中,只需写下这个。

public ActionResult AddUpdate(DashboardVideosModel socialTagChannel)
{
//Save data to database
return RedirectToAction("Index");
}

关于asp.net-mvc - 默认情况下不重定向到 Controller 的索引操作方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27860259/

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