Reputation: 91
Currently my company's page is built with Jquery but we are having some issues loading our client's page that contains bootstrap tabs due to the amount of information loaded at once.
One of the solutions is loading remote data with Ajax, but I would like to know if Angular JS has an alternative solution to that, because we are seriously considering rebuilding our entire page with Angular JS.
Upvotes: 1
Views: 369
Reputation: 2242
AngularJS uses Ajax (read: https://docs.angularjs.org/api/ng/service/$http) for loading dynamic content from the server-side. There's no way to avoid this unless you load this information all through the frontend. For this case, it is probably a good decision to load the content asynchronously via AJAX. AngularJS will help with organization for your application.
Upvotes: 2