0

我应该如何在不使用 RouteData.Values["id"]; 的情况下执行此操作

我正在使用视图中的此操作调用

@Html.ActionLink("Post","Create","Post", new {id=item.Id }, null)

这就是行动

    // GET: /Post/Create
    public ActionResult Create()
    {
        var x = (string)RouteData.Values["id"];
        var model = new Post() { DateCreated = DateTime.Now, BlogID = int.Parse(x)};

        return View(model);
    } 

有更好的方法吗?

4

2 回答 2

2

好吧,通常的做法是:

public ActionResult Create(string id)
{
    int intID;

    if (int.TryParse(id, out intID)) {
        //...   
    }

    //...
}
于 2012-12-09T21:14:54.623 回答
1
@Html.ActionLink("Post","Create","Post")

不要忘记,您也可以随时编写 HTML:<a href="/Post/Create">Post</a>

于 2012-12-09T21:22:53.393 回答