在 MVC 2 中传递数据时,从控制器重定向到另一个控制器时,值未传递

发布于 2024-10-12 03:31:55 字数 364 浏览 1 评论 0原文

是否可以将数据从一个控制器传递到另一个控制器?当我的第二个控制器被调用时,int id 显示错误的值:

我有一个控制器:

public ActionResult Index(int id)
{
  return RedirectToAction("New", "NewProducts", id);
}

NewProductsController:

public string New(int id)//    <--------id never has correct number when called
{

  return "value: " + id;

}

Is it possible to pass data from one controller to another? When my second controller is called the int id is showing the WRONG value:

I have one controller:

public ActionResult Index(int id)
{
  return RedirectToAction("New", "NewProducts", id);
}

NewProductsController:

public string New(int id)//    <--------id never has correct number when called
{

  return "value: " + id;

}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

琴流音 2024-10-19 03:31:55

您需要使用 RouteValueDictionary 或带有 id 属性的匿名类型作为路由值,否则它将使用 Int32 对象 id 上的属性来填充路由值字典。

public ActionResult Index(int id)
{
  return RedirectToAction("New", "NewProducts", new { id = id } );
}

You need to use either a RouteValueDictionary or an anonymous type with an id property for the route values otherwise it will use the properties on the Int32 object id to fill the route values dictionary.

public ActionResult Index(int id)
{
  return RedirectToAction("New", "NewProducts", new { id = id } );
}
痴情换悲伤 2024-10-19 03:31:55

希望它能起作用

public ActionResult Index(int id)
{
    return RedirectToAction("New?id=" + id, "NewProducts");
}

Hope it will work

public ActionResult Index(int id)
{
    return RedirectToAction("New?id=" + id, "NewProducts");
}

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文