Jump to content

AJAX & MVC


georgerobbo

Recommended Posts

AJAX is the same as a normal request you make with your browser. The only difference is that your View in this case will have to respond to what is expected: JSON, although it could just be HTML or XML, but JSON saves bandwidth and is probably faster.

 

In other words your Controller should not be named AJAX explicitly, it handles requests and AJAX is no different. Either reserve certain methods to return JSON (or whatever you fancy) or change to an AJAX-specific View during bootstrap.

Link to comment
https://forums.phpfreaks.com/topic/233915-ajax-mvc/#findComment-1202396
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.