我无法使用knockoutjs读取另一个数组中的数组jquery模板下面是代码行。请帮忙。
<script type="text/javascript">
ko.applyBindings({
lines: [
{ line: 'Anshul', links: [{link:'Add'},{link:'Remove'}] },
{ line: 'ABC', links: [{link:'Add'},{link:'Cancel'}]},
{ line: 'XYZ', links: [{link:'Add'},{link:'Remove'},{link:'Cancel'}] }
]
});
<table>
<tbody data-bind="template: { name: 'personTemplate'}" ></tbody>
</table>
<script type="text/x-jquery-tmpl" id="personTemplate">
{{each lines}}
<tr><td>${line}</td>
现在,我想在每个线路上展示链接列表。但我在这方面遇到了问题
谢谢, Anshul Kaistha
答案 0 :(得分:0)