【问题标题】:How can i make this comments with jsdoc我怎样才能用 jsdoc 发表评论
【发布时间】:2012-01-06 19:44:39
【问题描述】:

我怎样才能使用 jsdoc 正确地发表此评论。有什么想法???

   /**********************
* @variables : global variables
***************************/
var map; // this var handle the object related with the map
var image;
var currentMark;

【问题讨论】:

    标签: javascript jsdoc code-documentation


    【解决方案1】:

    只需在变量前添加一个文档注释:

    /** this var handle the object related with the map */
    var map;
    /** An image */
    var image;
    // Undocumented variables will not show up
    var currentMark;
    

    【讨论】:

      猜你喜欢
      • 2019-05-12
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2021-08-21
      • 2011-01-02
      • 2021-09-24
      • 1970-01-01
      • 2023-03-13
      相关资源
      最近更新 更多