如何使用 MVC 处理 javascript 文件的依赖管理?

发布于 2024-10-10 07:40:15 字数 514 浏览 0 评论 0原文

我想知道一种开发不断增长的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

别理我 2024-10-17 07:40:15

Telerik 使用 HtmlHelper 扩展来执行此操作:

    <%:Html.Telerik().ScriptRegistrar().DefaultGroup(
         grp => grp.Add("telerik.common.min.js").Add("telerik.draganddrop.min.js")
                    .Add("telerik.window.min.js")).jQuery(false).Globalization(true)%> 

<%

但显然,如果您这样做,您将不会获得智能。

Telerik use a HtmlHelper extension to do this:

    <%:Html.Telerik().ScriptRegistrar().DefaultGroup(
         grp => grp.Add("telerik.common.min.js").Add("telerik.draganddrop.min.js")
                    .Add("telerik.window.min.js")).jQuery(false).Globalization(true)%> 

<%

but obvioulsy you're not going to get intellisence if you do this.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文