我很高兴发现我可以在我的javascript中使用XML注释(即):
/// <summary>Determines the area of a circle based on a radius parameter.</summary>
/// <param name="Name" type="String">Give this dude a NAME!</param>
/// <returns type="Nothing">The area.</returns>
直到我意识到在我这样做之后,我的“公共”方法不再列入intellisense ...... :-(
this.greet = function (greeting) {
alert(greeting + " " + this);
}
当我实例化var thePlayer = new player('bob')时,上面会出现; ... 玩家;选手。 &lt; - greet将被列出,直到我提出上述XML注释。
有没有人有这方面的经验和解决方法?能够将javascript注释到intellisense中会非常好!
答案 0 :(得分:1)
我认为如果从退货中删除(type =“Nothing”),它应该显示播放器上的成员。