gpt4 book ai didi

javascript - 为什么ngdocs会生成0个文件?

转载 作者:行者123 更新时间:2023-11-29 14:52:28 25 4
gpt4 key购买 nike

我已经建立了一个非常简单的项目来测试 grunt-ngdocs ( https://www.npmjs.org/package/grunt-ngdocs )。但是,当我尝试生成文档时,它无法识别任何注释。为什么?!帮助!

Gruntfile.js

module.exports = function(grunt) {

// Project configuration.
grunt.initConfig({
ngdocs: {
options:{dest: 'docs'},
api:{
src:['someCode.js'],
title:'API Documentation'
}
}
});

// Load the plugin that provide tasks.
grunt.loadNpmTasks('grunt-ngdocs');

};

一些代码.js

/**
*
* This is a sample function
* @param x
* @returns {number}
*/
var myFunc = function(x){
return 2*x;
};

控制台输出:

slc058:ngDocPlay selah$ grunt ngdocs
Running "ngdocs:api" (ngdocs) task
Generating Documentation...
DONE. Generated 0 pages in 7ms.

Done, without errors.

最佳答案

我将 someCode.js 修改为以下内容,然后它起作用了!

一些代码.js

/**
* @ngdoc function
* @name myFunc
* @description
* This is a sample function
* @param {number} x - any number, don't matter which
*/
var myFunc = function(x){
return 2*x;
};

关于javascript - 为什么ngdocs会生成0个文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23346067/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com