This commit is contained in:
Anchor
2015-02-02 19:00:48 -08:00
committed by James Miranda
parent d0ab8a7ba8
commit e2dd2047b5

View File

@@ -33,7 +33,7 @@ Figure 13.3 framework data flow
3. If the requested resource has already been cached, the application will bypass the usual execution process and return a response directly to the user's browser.
4. Security detection: The application will filter incoming HTTP requests and any other user submitted data before handing it off to the controller.
5. Controller loads models, core libraries, and any other resources required to process specific requests. The controller is primarily responsible for handling business logic.
6. Output the rendered view layer to be sent to the client web browser. If you turn the cache, the first view is cached for future routine request.Output changes to the view layer by rendering content to be sent to the Web browser. If caching has been enabled, the first view is cached for future requests to the same resource.
6. Output the rendered view to be sent to the client's web browser. If caching has been enabled, the first view is cached for future requests to the same resource.
## Directory structure