javascript 文件结构 - 有什么好的解决方案吗?
当我编写 PHP 时,我可能会做一些事情,比如将每个对象放入它自己的文件中,或者,如果我更有礼貌的话,我什至可能有模型、视图和控制器的文件夹。
如果您正在编写大量 Javascript,那么避免拥有一个庞大文件的最佳方法是什么?
我认为脊柱/骨干框架会迫使我按照他们的方式去做,但是还有其他方法吗?
最好结合文件服务器端还是客户端?
When I write PHP I might do something like put each object in it's own file, or, if I was better mannered I might even have folders for Models, Views and Controllers.
If you are writing lots of Javascript, what's the best way to avoid having one massive file?
I presume the spine / backbone frameworks would force me to do it their way, but is there another approach.
Is it best to combine the files server side or client side?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在服务器端合并文件可能是最好的方法。
当涉及到文件组织时,您可能需要查看诸如 RequireJS 之类的解决方案,它允许您遵循 CommonJS 或 AMD 模式或 ruby 解决方案,例如 Sprockets
Combine files server-side is probably the best way.
When it comes to file organization you might want to take a look at solutions like RequireJS which allow you to follow the CommonJS or AMD patterns or a ruby solution like Sprockets