是否可以做类似的事情:
// GET:/Person/5
public ActionResult ShowDetails(Person p)
{
// There shoud be object filled with data from database, something like that:
// p.id = 5, p.Name = "John" (person of id 5 has name "John" in database)
return View(p);
}
我应该使用ModelBinders吗?如果是,我可以做一个模型绑定器,它将获取任何模型的数据吗?我已经为Person做了模型绑定器,但我不知道如何使用多个模型。谢谢。