假设我有一个视图,它接收到这样的列表:
@(notices: Seq[Notice])
@for( not <- notices) {
<tr> not.title </tr>
}
....
我在控制器中有一个方法,它由 ajax 调用并更改列表的值。我知道 de 方法可以返回一个 Result 并使用新值重新呈现页面,例如:
public Result editNotice() {
/*change the list */
return ok(list.render(notices);
}
但我只想刷新列表所在的表。
如何在不重新加载整个页面的情况下刷新视图中的列表?