简体   繁体   中英

Knockout.js nested foreach

I have a list of key value pairs (KVP) and I want to list 2 KVPs in every table row. From my limited Knockout knowledge, I figured that if I have an array of arrays, then I can use a nested foreach to achieve this.

jsfiddle code here .

But this is not outputting table cells as expected. What is wrong?

edit: updated fiddle link

采用:
KVPairs: ko.observableArray(filter.KVPairs)

It's seems I didn't understand your question. However, I'll leave this up in case you were curious how to display the phone numbers.


Your foreach should go on the tbody tag: http://jsfiddle.net/Vcwv6/4/

Also, I add a virtual element.

 <!-- ko foreach: phones --> <td> <select data-bind="value: type, options: $root.types"></select> <input data-bind='value: number' /> </td> <!-- /ko --> 

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM