gpt4 book ai didi

angularjs - 无法构建 angularjs 文档(不知道如何格式化 @ngdoc : method)

转载 作者:行者123 更新时间:2023-12-04 02:02:08 30 4
gpt4 key购买 nike

我有一个带有一些文档的服务,但是当我尝试使用 grunt-ngdocs 构建文档时,它失败了:

Warning: Don't know how to format @ngdoc: method Use --force to continue.

这是我想要做的
(function(angular) {
'use strict';

angular.module('services.base64', [])
.factory(
'Base64',
[function() {

/**
* @ngdoc service
* @name Base64
* @module services.base64
* @description Provides encoding a string into base64, and decode base64 to a string
*/
return {
/**
* @ngdoc method
* @name Base64#encode
* @param {string}
* input the string you want to encode as base64
* @returns {string} the base64 encoded string
*/
encode : function(input) {
//...
},

/**
* @ngdoc method
* @name Base64#decode
* @param {string}
* input the base64 encoded string
* @returns {string} the decoded string
*/
decode : function(input) {
//...
}
};
}]);
}(angular));

我确定我错过了一些简单的东西......

最佳答案

这是我最终做的

(function(angular) {
'use strict';

/**
* @ngdoc overview
* @name services.base64
*/
angular.module('services.base64', [])
.factory(
'Base64',
[function() {

/**
* @ngdoc service
* @name services.base64.Base64
* @description Provides encoding a string into base64, and decode base64 to a string
*/
return {
/**
* @ngdoc method
* @name encode
* @methodOf services.base64.Base64
* @param {string}
* input the string you want to encode as base64
* @returns {string} the base64 encoded string
*/
encode : function(input) {
//...
},

/**
* @ngdoc method
* @name decode
* @methodOf services.base64.Base64
* @param {string}
* input the base64 encoded string
* @returns {string} the decoded string
*/
decode : function(input) {
//...
}
};
}]);
}(angular));

这似乎做我想做的事……也许有一种不那么冗长的做事方式?

关于angularjs - 无法构建 angularjs 文档(不知道如何格式化 @ngdoc : method),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23617961/

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