I am thinking about how some online services create dynamic JavaScript files. These files have the .js extension, but their content is not static. I found a sample file here. It seems that this script is generated with a higher level programming language. I think it is done with PHP or something similar, but I am not sure, and I have not found any documentation about this topic.
Is there any well known way to create these kind of dynamic JavaScript files?
I am thinking about how some online services create dynamic JavaScript files. These files have the .js extension, but their content is not static. I found a sample file here. It seems that this script is generated with a higher level programming language. I think it is done with PHP or something similar, but I am not sure, and I have not found any documentation about this topic.
Is there any well known way to create these kind of dynamic JavaScript files?
Share Improve this question asked May 17, 2013 at 15:21 Patartics MilánPatartics Milán 4,9584 gold badges29 silver badges32 bronze badges 2- 1 you can create them with any server-side language. the file extension does not have to be js, or anything really, content-type is ignored by <script> tags. in other words, it's just a web page without the HTML tags... – dandavis Commented May 17, 2013 at 15:25
- The same way you create dynamic-anything-else – Quentin Commented May 17, 2013 at 15:28
3 Answers
Reset to default 10Consider carefully whether generating a dynamic JS file is necessary at all. Instead of generating dynamic JS, you can often simply inject static script(s) and use separate JSON to support dynamic configuration into your page.
If you view source on this (or about any) StackOverflow page you'll see that they're using this same pattern: Static external .js files that reference a separate centralized chunk of JSON for configuration. That JSON is what provides dynamism.
View source and look for this:
StackExchange.init({...
Most server side languages make it trivial to serialize an object to JSON so you can inject it into your page.
Here's ten reasons utilizing external static js files is preferable:
- Cached
- Code colored
- Syntax checked
- Separation of concerns
- Reusable
- Easier to read.
- One less layer of abstraction
- Can serve minified and obfuscated
- Avoids string parsing on every request
- StackOverflow and all the cool kids are doing it (hey, I promised 10 reasons.)
More info here: http://www.bitnative./2013/10/06/javascript-configuration-object-pattern/
That depends on whether you want to generate files or return data. Generating files would be done with something like file_put_contents. Alternatively you could have a .js file in a folder with a .htaccess file that tells you to execute it as php, allowing you to simply generate the script on the fly based on session, get, or post parameters.
You can use any server-side language to create dynamic javascript files, javascript files don't need to end with .js. If you really want your files to end with .js you'll need to edit your server settings to also process .js files as for instance PHP files.
You can also use server code to generate inline javascript.
But be careful when generating javascript files, it can bee very plex when you are mixing two programming languages
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743612566a4478495.html
评论列表(0条)