What is the difference between using CI to load views and directly accessing pages? You can use AJAX to interact with the server directly on the page. What are the advantages and disadvantages of loading a view? ------ Solution -------------------- there is no essential difference. Load & nbsp; view. it is actually the page rendering part, that is, V in MVC. Compared with direct access to pages, this method has the advantage of layering for easy maintenance and expansion. ------ Solution --------- What is the difference between using CI to load a view and directly accessing a page?
You can use AJAX to interact with the server directly on the page. What are the advantages/disadvantages of loading a view?
------ Solution --------------------
There is no essential difference.
Load view is actually the page rendering part, that is, V in MVC.
Compared with direct access to pages, this method has the advantage of layering for easy maintenance and expansion.
------ Solution --------------------
Different implementation requirements
CI loading views are mostly the loading of the entire page
Ajax is an asynchronous request Service that returns a page to dynamically update a local page.