On Tue, 13 Dec 2016 at 03:49 <[email protected]> wrote: > Hi Daniel, > > And the console log will show my posts data as a type string > representation of my array strings. Thanks. > > string [{"Name":"aaa","Address":"bbb","Phone":"1111"}, > {"Name":"ccc","Address":"ddd","Phone":"2222"}, > {"Name":"eee","Address":"fff","Phone":"3333"}] >
OK, that's your problem. `<iron-list>` takes an array, in the `items` property, not a string. You need to change your `posts` variable to contain an array, or use a different variable which does contain an array. Follow Polymer on Google+: plus.google.com/107187849809354688692 --- You received this message because you are subscribed to the Google Groups "Polymer" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/polymer-dev/CABtuYwcQV4nyah_nCF1XhV1UgD4sR5-VuHyCxO0%2BHun0%2BONKNQ%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
