2

我正在尝试为我的 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 有什么问题?

4

1 回答 1

5

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

/**
 * @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

于 2016-02-25T16:42:24.173 回答