我有一个 Kendo UI 移动列表视图
<ul data-role="listview" data-bind="source: customers" data-template="customer-template"/>
现在我想访问customer
数组的属性,并在模板中对其进行迭代。像这样的东西
<script type="text/x-kendo-template" id="customer-template">
<div>#:CustomerName#</div>
<div>
<div>Orders</div>
#for(x=0;x<customers.orders.lentgh(); x++){#
<div>customers.orders.[x].OrderId</div>
#}#
</div>
显然,这行会引发错误
#for(x=0;x<customers.orders.lentgh(); x++){#
<div>customers.orders.[x].OrderId</div>
#}#
是否可以访问模板内列表视图的数据源?有任何想法吗?