2
私はテーブルに単純な角度ディレクティブを持っていますが、テーブルの前にレンダリングします。 angleディレクティブが適切な場所にありません
app.directive('myDirective',function() {
return {
restrict : "E",
templateUrl : "directives/myDirectiv.html",
replace : true
}
})
<table class="table">
<thead>
<tr>
<th>ID</th>
<th>Name</th>
<th>Deposit</th>
<th>Credit Card</th>
</tr>
</thead>
<tbody>
<my-Directive></my-Directive>
</tbody>
</table>
<!-- here is html in the directive -->
<tr>
<td>001</td>
<td>Danilo</td>
<td>7163547265</td>
<td>Visa</td>
</tr>
のTy。私はそれがよくコメントディレクティブでうまくいくのを見ます。 – Danilo
@ダニロ私はそれがうまくいくとコメントを見る。人々は一般的にそれを使用することを好まない。それがあなたを助けた場合、答えを受け入れる:)ありがとう:) –
@ダニロのリマインダは、答えを受け入れてください:) –