knockout foreach is not working for objects in Array

43 Views Asked by At

I have an array that has a list of objects and I am trying to loop through it but it seems to not working.

<!-- ko foreach: applicationsAndProducts -->
                    <p>Apps and Products</p>
                    <ul>
                        <li data-bind="text: applicationsAndProducts.Product"></li>
                    </ul>
                    <!-- /ko -->

applicationsAndProducts has 3 values as below

enter image description here

1

There are 1 best solutions below

0
On

You should only be using Product instead of applicationsAndProducts.Product. Check the documentation for foreach binding

<!-- ko foreach: applicationsAndProducts -->
    <p>Apps and Products</p>
    <ul>
        <li data-bind="text: Product">
        </li>
    </ul>
<!-- /ko -->