使用 Url.Content 时如何获取 javascript 智能感知
假设我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我将“真正的”jquery.min 文件加载到我的 master/_layout 页面中,然后将其放在 jQuery intellisense (razor 代码)的子页面顶部:
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):
不幸的是,不支持此功能。阅读第 4 节。。 IntelliSense 可以识别哪些 URL 路径类型?在此页面。
Unfortunately this feature is not supported. Read Section 4. Which URL-path types does IntelliSense recognize? in this page.