admin管理员组文章数量:1415697
I was creating a simple Wordpress plugin which uses a javascript file. Although the PHP edits did not need a server refresh and were reflected immediately on page reload, the javascript edits were not reflected until I restarted the server (they did not work even on a hitting "Refresh" on xampp).
What I would like to know:
1. How are Javascript files are loaded in Apache?
2. Is there anyway to configure it so that the files are loaded everytime I reload the page? ( I will be editing the Javascript files a lot. I do not want to be restarting the server everytime!)
I was creating a simple Wordpress plugin which uses a javascript file. Although the PHP edits did not need a server refresh and were reflected immediately on page reload, the javascript edits were not reflected until I restarted the server (they did not work even on a hitting "Refresh" on xampp).
What I would like to know:
1. How are Javascript files are loaded in Apache?
2. Is there anyway to configure it so that the files are loaded everytime I reload the page? ( I will be editing the Javascript files a lot. I do not want to be restarting the server everytime!)
4 Answers
Reset to default 3How are Javascript files are loaded in Apache?
Ans: It is the same with your html file or other static contents.
Is there anyway to configure it so that the files are loaded everytime I reload the page?
Ans: This is not the problem of Apache, It is mostly because your browser caches your javascript file. Simply clear your browser caches.
A nice trick you can do is to append a random string to the resource that you want to keep up to date every pageload. Ex.:
<script type='text/javascript' src='/myScript.js?p=<?php print sha1(time()); ?>'>
</script>
In the same way, if you want to always refresh an image, just append it a random parameter:
<img src='/images/myImage.png?p=<?php print sha1(time()); ?>' />
You can do this with CSS files too.
Appending a random parameter to a resource will make the browser treat this resource as a new one, so it can't be loaded from cache.
I use a Firefox add on called "Web Developer" to temporarily disable the browser cache when I am working on web pages. You can toggle the cache on and off with it, amongst other things. I still think Beto Aveiga's plan is very interesting, I am thinking of a scheme to put it to use right now.
GET requests are cached in the browser. Clear your browsers cache and set it to check for new files every time in the browser's settings.
本文标签: How does Apache load Javascript filesStack Overflow
版权声明:本文标题:How does Apache load Javascript files? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1745237813a2649140.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论