web-dev-qa-db-ja.com

RedirectToActionでパラメーターを渡すにはどうすればよいですか?

私はMVCasp.netに取り組んでいます。

これは私のコントローラーのアクションです:

public ActionResult ingredientEdit(int id) {
    ProductFormulation productFormulation = db.ProductFormulation.Single(m => m.ID == id);
    return View(productFormulation);
}

//
// POST: /Admin/Edit/5

[HttpPost]
public ActionResult ingredientEdit(ProductFormulation productFormulation) {
    productFormulation.CreatedBy = "Admin";
    productFormulation.CreatedOn = DateTime.Now;
    productFormulation.ModifiedBy = "Admin";
    productFormulation.ModifiedOn = DateTime.Now;
    productFormulation.IsDeleted = false;
    productFormulation.UserIP = Request.ServerVariables["REMOTE_ADDR"];
    if (ModelState.IsValid) {
        db.ProductFormulation.Attach(productFormulation);
        db.ObjectStateManager.ChangeObjectState(productFormulation, EntityState.Modified);
        db.SaveChanges();
        **return RedirectToAction("ingredientIndex");**
    }
    return View(productFormulation);
}

IdをingredientIndexアクションに渡したい。これどうやってするの?

このIDを使用したいpublic ActionResult componentEdit(int id)これは別のページからのものです。実際、2番目のアクションにidがありません。どうすればよいか教えてください。

10
return RedirectToAction("IngredientIndex", new { id = id });

更新

まず、IngredientIndexとIngredientEditの名前をIndex and Editだけに変更し、AdminControllerではなくIngredientsControllerに配置します。必要に応じて、Adminという名前の領域を作成できます。

//
// GET: /Admin/Ingredients/Edit/5

public ActionResult Edit(int id)
{
    // Pass content to view.
    return View(yourObjectOrViewModel);
}

//
// POST: /Admin/Ingredients/Edit/5

[HttpPost]
public ActionResult Edit(int id, ProductFormulation productFormulation)
{
    if(ModelState.IsValid()) {
        // Do stuff here, like saving to database.
        return RedirectToAction("Index", new { id = id });
    }

    // Not valid, show content again.
    return View(yourObjectOrViewModel)
}
26
Johan Olsson

この方法を試してください:

return RedirectToAction("IngredientIndex", new { id = productFormulation.id });
0
frennky

なぜこれをしないのですか?

return RedirectToAction("ingredientIndex?Id=" + id);
0
daniel.herken