使用 Url.Content 时如何获取 javascript 智能感知

发布于 2024-10-18 17:26:44 字数 331 浏览 3 评论 0原文

假设我在 MVC3 中添加了一个 jQuery 链接,如下所示

<script src="@Url.Content("~/Scripts/jq.js")" type="text/javascript"></script>

现在脚本文件夹也有 -vsdoc 文件,但除非我添加这样的脚本文件,否则我不会获得智能感知:

<script src="../../JS/jq.js" type="text/javascript"></script>

有没有办法解决这个问题?

Say I add a link to jQuery as follows in MVC3

<script src="@Url.Content("~/Scripts/jq.js")" type="text/javascript"></script>

Now the scripts folder also has the -vsdoc file but I won't get the intellisense unless I add the script file like this:

<script src="../../JS/jq.js" type="text/javascript"></script>

Is there a way around this?

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

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

发布评论

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

评论(2

影子是时光的心 2024-10-25 17:26:44

我将“真正的”jquery.min 文件加载到我的 master/_layout 页面中,然后将其放在 jQuery intellisense (razor 代码)的子页面顶部:

@if (false) { <script type="text/javascript" src="/Scripts/jquery-1.5-vsdoc.js"></script> }

I keep the "real" jquery.min file loaded in my master/_layout page, and then I just throw this up at the top of the child page for jQuery intellisense (razor code):

@if (false) { <script type="text/javascript" src="/Scripts/jquery-1.5-vsdoc.js"></script> }
唯憾梦倾城 2024-10-25 17:26:44

不幸的是,不支持此功能。阅读第 4 节。。 IntelliSense 可以识别哪些 URL 路径类型?在此页面

Unfortunately this feature is not supported. Read Section 4. Which URL-path types does IntelliSense recognize? in this page.

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