Knockout Mapping reading JSON
问题 Just starting with KnockOut Mapping to read some JSON (using Google Books API) , but can't seem to get it to work. No errors report, but nothing is displayed. Probably a simple issue I overlooked, but thanks for the review. Markup.... <body> <h2>Find Cat in the Hat</h2> <div> <input id="booksearch" /> </div> <div> <table> <thead> <tr> <th>Volumes</th> </tr> </thead> <tbody data-bind="foreach: model.items"> <tr> <td data-bind="text: model.id"></td> </tr> </tbody> </table> </div> <input id=