ASP.Net MVC 3 Razor комментарий ломает jQuery intellisense - PullRequest
1 голос
/ 05 марта 2012

Кажется, что есть ошибка в Razor или в MVC.Учитывая следующий код:

@* This is necessary to get the jQuery intellisense.  It won't be rendered to the HTML *@
@if (false) { <script src="../../Scripts/jquery-1.7.1-vsdoc.js" type="text/javascript"></script> }

<script>
$().   <- This has intellisense

@* Comment *@
$().   <- This does not have intellisense
</script>

Как видите, что-либо после комментария Razor не имеет intellisense jQuery.В окне ошибок в VS2010 я получаю сообщение «Сообщение IntelliSense Javascript: C: \ Src \ CSUService \ CSUService \ Scripts \ jquery-1.7.1-vsdoc.js (68:48):« rootjQuery »не определен»

Кто-нибудь знает способ обойти это?

...