我在tbody中使用ng-repeat存在問題。 當我使用該代碼:AngularJS ng-repeat in tbody not working
<tbody>
<tr ng-repeat="group in groups">
<td>{{ group.name }}</td>
</tr>
</tbody>
我得到這個錯誤:
TypeError: Cannot read property 'childNodes' of undefined
但有這樣的代碼:
<div ng-repeat="group in groups">{{group.name}}</div>
內同一範圍內運行完美。我發現了一些在tbody上使用ng-repeat的答案,但是我需要這個結構來使用jQuery數據表。任何人都可以幫助我嗎?
你能爲錯誤提供jsfiddle嗎? –
似乎真的很傻。給我多一點代碼,看看你可能會出錯的地方。看看這個plunk(https://plnkr.co/edit/KcZiBiY4s9TPASYIg0eB) – Alok
對不起,我不知道如何使用所有這些小提琴般的東西。以下是更多代碼:https://plnkr.co/edit/nDRj7T9Cy5hugqQLEhM3?p=catalogue –