gpt4 book ai didi

javascript - grunt-ngdoc 没有为我的 ngdoc 文档呈现示例

转载 作者:行者123 更新时间:2023-11-29 16:54:27 25 4
gpt4 key购买 nike

我正在尝试获取一个基本示例,以便在我的 Angular 项目中使用 ngDoc。

这是一个例子:

/**
* @ngdoc directive
* @name ui.components.uiRepeat
* @description
*
* Place this attribute directive on any element that has an `ng-repeat` on it, and it will add CSS classes
* for the different element states in the repeat set.
*
* @example
<example name="uiRepeat-directive">
<file name="index.html">
<div ng-repeat="item in items" ui-repeat="item">
</div>
</file>
</example>
*/

编译文档时会显示示例 标题,但没有嵌入示例。

这里是已编译文档的链接:

http://thinkingmedia.github.io/thinkingmedia-ui/#/api/ui.components.uiRepeat

这里有一个指向 Angular 文档的链接,展示了一个例子应该是什么样子:

https://docs.angularjs.org/api/ng/directive/ngClick

我不知道我的 ngDoc 有什么问题?

最佳答案

尝试用模块属性替换示例标签中的name属性

/**
* @ngdoc directive
* @name ui.components.uiRepeat
* @description
*
* Place this attribute directive on any element that has an `ng-repeat` on it, and it will add CSS classes
* for the different element states in the repeat set.
*
* @example
<example module="ui">
<file name="index.html">
<div ng-repeat="item in items" ui-repeat="item">
</div>
</file>
</example>
*/

并且不要忘记将路径添加到此模块并将指令添加到您的 Gruntfile

关于javascript - grunt-ngdoc 没有为我的 ngdoc 文档呈现示例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33417186/

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