更改 MVC 应用程序中的脚本文件夹并使用 Telerik MVC 扩展

发布于 2024-09-12 14:49:53 字数 508 浏览 17 评论 0原文

我正在使用 Telerik MVC Extensions 并将我的 Scripts 文件夹移动到 Content 文件夹中。所以,而不是......

    <script src="<%= Url.Content("~/Scripts/jquery-1.4.1.min.js") %>" type="text/javascript"></script>

我现在......

<script src="<%= Url.Content("~/Content/Scripts/jquery-1.4.1.min.js") %>" type="text/javascript"></script>

我意识到我可以使用 ScriptRegistrar().jQuery(false) 方法关闭 jQuery 包含,但是如何告诉 Telerik MVC Extensions 新的“base”文件夹在哪里?

I am using the Telerik MVC Extensions and have moved my Scripts folder in to the Content folder. So instead of ...

    <script src="<%= Url.Content("~/Scripts/jquery-1.4.1.min.js") %>" type="text/javascript"></script>

... I now have ...

<script src="<%= Url.Content("~/Content/Scripts/jquery-1.4.1.min.js") %>" type="text/javascript"></script>

I realise that I can turn off jQuery inclusion with the ScriptRegistrar().jQuery(false) method, but how to I tell the Telerik MVC Extensions where the new "base" folder is?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

葬心 2024-09-19 14:49:53

我不确定它附带的 Telerik MVC 扩展版本是什么,但您可以调用 DefaultPath() 在默认组上更改基本目录:

<%= Html.Telerik().ScriptRegistrar()
        .DefaultGroup(g => g.DefaultPath("~/Content/Scripts")
        .Add("Main.js"))
%>

I'm not sure what version of the Telerik MVC extensions it came with, but you can call DefaultPath() on the default group to change the base directory:

<%= Html.Telerik().ScriptRegistrar()
        .DefaultGroup(g => g.DefaultPath("~/Content/Scripts")
        .Add("Main.js"))
%>
玩世 2024-09-19 14:49:53

您无法通过 API 设置基本文件夹,您可以遵循 MVC 约定或手动插入脚本。当然,您可以编辑扩展的代码并修改 ScriptRegistrar 查找它们的位置,在 WebAssetDefaultSettings

也就是说,您真的需要 Content 文件夹中的脚本吗?

You cannot set a base folder through the API, you either follow the MVC convention or you insert your scripts manually. You can, of course, edit the code of the extensions and modify the places where the ScriptRegistrar looks for them, in the WebAssetDefaultSettings class.

That said, do you really need the scripts in the Content folder?

桜花祭 2024-09-19 14:49:53

由于代码格式不在注释中,所以这是我的代码......

public class MvcApplication : System.Web.HttpApplication, IContainerAccessor
{

    ...

    protected void Application_Start()
    {
        ...

        WebAssetDefaultSettings.ScriptFilesPath = "~/Content/Scripts";
    }


    ...
}

Since the code formatting is, well not there in the comments, here is my code ...

public class MvcApplication : System.Web.HttpApplication, IContainerAccessor
{

    ...

    protected void Application_Start()
    {
        ...

        WebAssetDefaultSettings.ScriptFilesPath = "~/Content/Scripts";
    }


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