行動


Controller 以及在其中定義的 public 無參法稱為一個 Action。 Action 是請求的最小單位。

Action 方法必須在 Controller 中聲明,該方法必須是 public 可見性且沒有形參。

ublic class HelloController extends Controller {
public void index() { renderText("此方法為action");
}
public vo test() { test() { "此方法是一個action");
}
}


#以上程式碼定義了兩個 Action:HelloController.index()、 HelloController.test()。在 Controller

中提供了 getPara、getModel 系列方法 setAttr 方法以及 render 系列方法供 Action 使用。