在我看来,我有以下actionlink:
Html.ActionLink(item.users.nickname, "Details", new { controller = "Account" }, new { id = item.users.id })
这应链接到Acount / Details / 2但由于某种原因它只链接到帐户/详细信息 我甚至尝试过改变
new { id = item.users.id }
到
new { id = 2 }
但这给了我同样的结果。我有默认的MVC路由,但不应该有任何问题吗?
答案 0 :(得分:1)
试试这个
Html.ActionLink(item.users.nickname, "Details", new { controller = "Account" , id = item.users.id })
答案 1 :(得分:0)
@Html.ActionLink("Details", "Details", new { id = item.users.id })
应该这样做。您在哪里确定链接的文本?