更改 MVC 应用程序中的脚本文件夹并使用 Telerik MVC 扩展
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我不确定它附带的 Telerik MVC 扩展版本是什么,但您可以调用 DefaultPath() 在默认组上更改基本目录:
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:
您无法通过 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 theWebAssetDefaultSettings
class.That said, do you really need the scripts in the Content folder?
由于代码格式不在注释中,所以这是我的代码......
Since the code formatting is, well not there in the comments, here is my code ...