AngularJS

Share

If you’ve worked with AngularJS you most definitely have found yourself in the situation of using templates. While good for release and keeping your code clean, templates can often times pose a problem while developing. Since AngularJS has an implemented cache method, everytime you modfidy a template it will load from cache, therefore not allowing you to see your new modifications. This can be disabled in a number of ways, we’ll show only 2:

With $templateCache:

myApplication.run(function($rootScope, $templateCache) {
   $rootScope.$on('$viewContentLoaded', function() {
      $templateCache.removeAll();
   });
});

With $httpProvider – rememeber to include it in your controller.

$httpProvider.defaults.headers.common['Cache-Control']='no-cache'

However, you will often notice the caching still occuring, especially if you develop on Google Chrome browser. That happens because browsers have another caching mechanism, specific for network requests of files, to help speed things along. Therefore, if you find yourself doing the above and still not getting the updated template, you may want to check how to disable your browser internal cache.

For Google Chrome, you must open developer tools, click the gear icon in the bottom right (opens settings panel) and there search for “Disable Cache” (could be under “Network”, or “General” or may have an appendix like: “(while DevTools is open)”).

If you do that, browser caching will be disabled and you can return to fast programming (no extra actions needed for refresh) while using templates!

Finally, there’s another very important peculiarity of what does Cialis that brings it so high above its alternatives. It is the only med that is available in two versions – one intended for use on as-needed basis and one intended for daily use. As you might know, Viagra and Levitra only come in the latter of these two forms and should be consumed shortly before expected sexual activity to ensure best effect. Daily Cialis, in its turn, contains low doses of Tadalafil, which allows to build its concentration up in your system gradually over time and maintain it on acceptable levels, which, consequently, makes it possible for you to enjoy sex at any moment without having to time it.

By continuing to use the site, you agree to the use of cookies. More information

The cookie settings on this website are set to "allow cookies" to give you the best browsing experience possible. If you continue to use this website without changing your cookie settings or you click "Accept" below then you are consenting to this.

Close