Aptana Scriptdoc没有出现在Code Assist中

时间:2011-05-31 21:22:48

标签: javascript eclipse aptana

我已按照所有说明将代码注释显示在Code Assist中,但我没有运气。目前在Eclipse中使用Aptana 3插件(这可能是问题吗?)

myObj = {
/** 
* Gets the current foo 
* @param {String} fooId The unique identifier for the foo.
* @return {Object} Returns the current foo.
*/
getFoo: function (fooID) {
    return bar[fooID];
}

}

当我有上面的代码时,该函数显示在代码辅助中,但没有与之关联的文档。

1 个答案:

答案 0 :(得分:1)

在Aptana支持论坛上发现他们的Scriptdoc设置不支持未声明的变种。

如果我将上述代码更改为:

var myObj = {
    /** 
    * Gets the current foo 
    * @param {String} fooId The unique identifier for the foo.
    * @return {Object} Returns the current foo.
    */
    getFoo: function (fooID) {
        return bar[fooID];
    }
}

然后一切正常