0
爲什麼這不起作用?ng-repeat創建表列與陣列失敗
控制器:
$scope.dates = ['1-1-2017', '2-1-2017'];
模板:
<tr>
<td ng-repeat="date in dates">
{{ date }}
</td>
</tr>
,但它與<div>
工作:
<div ng-repeat="date in dates">
{{ date }}
</div>
我認爲你的問題可能會有所不同。在此發佈您的所有代碼。 – plvice
您的代碼有效。不要忘記'
回答
當它被嵌入到標籤內,您的代碼工作
<table>
來源
2016-12-30 08:09:48 Sajeetharan
來源
2016-12-30 08:13:07 Anil
這是因爲您不使用
<table>
父元素綁定,那麼試試這個:更新:
看到此並嘗試刪除
table
然後檢查。請參閱detail它適用於您。
來源
2016-12-30 08:18:09
相關問題