我正在使用VS2012,我的一个项目范围的Javascript函数名称空间的所有公开方法都以下划线_开头,例如:
var NameSpace = {
_aMethod = function () { },_anotherMethod = function () { }
};
我为命名空间创建了一个快速的vsdoc文件,并且命名空间本身出现了,但没有一个方法可以.注意:如果我在方法的开头删除_,它就像一个魅力.
// This would work,and show up in the VSDOC
var NameSpace = {
aMethod = function () { },anotherMethod = function () { }
// ^ notice no underscores
};
有没有办法解决?
最佳答案
原文链接:https://www.f2er.com/js/429789.html