简单,这实际上是我使用 ASP.NET MVC 的第一天
例如,我在大厅中添加了一张桌子,然后我想再次显示桌子列表,我在索引视图中这样做。
我是否需要创建一个与索引视图具有相同内容的 AddTable 视图?
试过这个但没有用。
public class PokerController : Controller
{
Lobby L;
// GET: /Poker/
public PokerController()
{
L = Lobby.Instance;
}
public ActionResult Index()
{
return View(L.Tables);
}
public void AddTable()
{
L.Tables.Add(new Table(3));
this.Index();
}
}