如何使用 MVC 处理 javascript 文件的依赖管理?
我想知道一种开发不断增长的 Web 应用程序的好方法,该应用程序包含大量 javascript 文件,具体取决于屏幕。
我搜索没有成功...
在这个网站上,我有一些解决方案: http:// addyosmani.com/blog/large-scale-jquery/
我将 RequireJs 作为一个很好的起点。
但是……说到点子上了…… 我想要一个可以在名为 Yii 的 php 框架中找到的功能。
它处理一堆JS文件的方式非常简单。 我告诉框架,我在特定视图或部分视图中需要哪个文件。 该框架向我呈现,没有重复任何包含脚本标记。
ASP.MVC框架中有类似的功能吗?或者类似的东西? 我想我可以做一个助手,不知道这是否是一个用上千个 JavaScript 处理成千上万个屏幕的好方法。
I would like to know a good approach to develop a growing web application which consist in a large set of javascript files, depending on the screen.
I've searched without success...
In this site, i have some solutions: http://addyosmani.com/blog/large-scale-jquery/
I got the RequireJs as a good start point.
But... to the point...
I'd like a feature where can be found in the php framework called Yii.
Its way to handle a bunch JS files is very simple.
I tell to the framework, which file i need in a specific View, or Partial.
The framework renders to me without duplicatin any include script tag.
Is there any feature like that in ASP.MVC framework? Or anything like that?
I think i could do this making a Helper, don't know if it is a good way to handle thousands and thousands screen with plus thousand javascripts.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Telerik 使用 HtmlHelper 扩展来执行此操作:
<%
但显然,如果您这样做,您将不会获得智能。
Telerik use a HtmlHelper extension to do this:
<%
but obvioulsy you're not going to get intellisence if you do this.