設定

Choose language

new topic 35 投稿, 5 作家, 5 読者, 開始しました 100ヶ月前

投稿された96ヶ月前(Thursday, June 30) kovaldm
#26
kovaldm

投稿された96ヶ月前(Thursday, June 30) kovaldm
#27
kovaldm

投稿された96ヶ月前(Thursday, June 30) kovaldm
#28
kovaldm

投稿された96ヶ月前(Thursday, June 30) kovaldm
#29
kovaldm

投稿された96ヶ月前(Thursday, June 30) kovaldm
#30
kovaldmnewuser

投稿された96ヶ月前(Thursday, June 30) kovaldm
#31
kovaldmnewuser

投稿された96ヶ月前(Thursday, June 30) kovaldm
#32
kovaldm

newuser

投稿された96ヶ月前(Thursday, June 30) kovaldm
#33
kovaldmnewuser

投稿された96ヶ月前(Thursday, June 30) kovaldm
#34
kovaldmnewuser

投稿された89ヶ月前(Thursday, February 9) kovaldm
#35
dmitry-kovalev

投稿された89ヶ月前(Thursday, February 9) kovaldm
#36
qwe-1kovaldmkovaldm
kovaldm

投稿された89ヶ月前(Thursday, February 9) kovaldm
#37
kovaldm

投稿83ヶ月前(Wednesday, July 19)、編集83ヶ月前 newuser
#38
When a user requests an action 'XYZ',
CController will do one of the following:
1. Method-based action: call method 'actionXYZ' if it exists;
2. Class-based action: create an instance of class 'XYZ' if the class is found in the action class map (specified via actions(), and execute the action;
3. Call missingAction(), which by default will raise a 404 HTTP exception.
If the user does not specify an action, CController will run the action specified by defaultAction, instead.
CController may be configured to execute filters before and after running actions. Filters preprocess/postprocess the user request/response and may quit executing actions if needed. They are executed in the order they are specified. If during the execution, any of the filters returns true, the rest filters and the action will no longer get executed.