我想在Visual Studio 2010中获取intellisense for knockoutJS。
经过一些研究后我得到的是:
///reference path="../lib/knockout/knockout-2.3.0.debug.js" />
ko.WeGotIntellisenseHere; //As long as we don't add RequireJs intellisense reference above knockout reference
define(['jquery', 'knockout'], function($, ko){
///<param name="ko" type="knockout">
///some comments
///</param>
ko.NoIntellisenseHere(); // unless I change "type=knockout" by "type=Array"
});
你知道是否&#34; type = knockout&#34;是不正确的???当我改为&#34; type = Array&#34;时,intellisense在外部(显示淘汰成员)和内部(显示数组成员)的&#34;定义&#34;功能
jQuery发生同样的事情
注意:在示例中,我没有写开始标记字符&#34;&lt;&#34;对于&#34;参考&#34;标签因为它在SO上有问题
提前致谢