asp.net mvc - Single Page Application versus jQuery -
can tell me difference of using spa , normal jquery reload particular content of page. eg: let's say, have grid. can use ajax/jquery refresh grid every 5sec. how different spa?
in single page application, fetch data server in asynchronous manner , update page without reloading entire page
. can change content of parts of pag
e or can update complete html
using data fetched server. important thing not reload page.
to that, can use jquery of course not must. have update dom.
you can either use dom manipulation frameworks such jquery
or new popular javascript mvc
frameworks such ember.js , angular.js handles of dom manipulation you.
for question updating grid in html page via ajax queries not mean web app spa.
Comments
Post a Comment