Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

endless_loop_bug.md 682B

123456789101112
  1. Creating an Action <a name="creating-action"></a>
  2. ------------------
  3. For the "Hello" task, you will create a `say` [action](structure-controllers.md#creating-actions) that reads
  4. a `message` parameter from the request and displays that message back to the user. If the request
  5. does not provide a `message` parameter, the action will display the default "Hello" message.
  6. > Info: [Actions](structure-controllers.md#creating-actions) are the objects that end users can directly refer to for
  7. execution. Actions are grouped by [controllers](structure-controllers.md). The execution result of
  8. an action is the response that an end user will receive.
  9. Actions must be declared in ...