我想弄清楚Kendo UI模板中的列表視圖如何通過每個對象內的集合循環來呈現頁面上的信息。這裏是我用打JSON的例子:Kendo UI循環通過Json中的ListView模板內的集合
{"Data":[{"Title":"Malicious Acts","KeyPairs":{"Key1":"12","Key2":"24"}}, {"Title":"Enrollments","KeyPairs":{"Key1":"12","Key2":"24"}},{"Title":"Customer Feedback","KeyPairs":{"Key1":"12","Key2":"24"}},{"Title":"Questionable Accounts","KeyPairs":{"Key1":"12","Key2":"24"}}],"Total":4,"AggregateResults":null,"Errors":null}
我要呈現在模板中的密鑰對項目,只是遇到了一些麻煩了解如何。
這裏是源:
<div id="subscriberFunctions">
<script type="text/x-kendo-tmpl" id="template">
<div class="subscriberFunction">
<h3>${Title}</h3>
<!-- Display KeyPairs -->
</div>
</script>
@(Html.Kendo().ListView<SubscriberMenuFunction>()
.Name("listView")
.TagName("div")
.ClientTemplateId("template")
.DataSource(dataSource =>
{
dataSource.Read(read => read.Action("SubscriberMenu", "ListView"));
})
.Selectable(selectable => selectable.Mode(ListViewSelectionMode.Single))
)
</div>
我敢肯定,我只是這得太多,這是簡單的東西,但不知道如何實現在模板中的foreach循環的劍道UI識別它。
在此先感謝!
這是一個更好的方法,效果很好,不會在輸出中帶來額外的代碼片段。 – mservais
我認爲你在「var i = 0」之後有一個輸入錯誤,逗號應該是半角正確的? –
^我認爲你在'應該是'之後出現錯字,'半決賽'應該是'分號'吧? :P – PAULDAWG