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

example タグの name 属性を module 属性で置き換えてみてください

/**
 * @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 に答える