为什么我得到错误Polymer :: Attributes:不能将数组解码为JSON?

时间:2017-05-29 14:21:37

标签: json ajax polymer

我有一个带有此JSON的API(http://localhost:8080/testapi):

{"cars":[{"color":"Blue","miles":100,"vin":"1234"},{"color":"Red","miles":200,"vin":"1235"}]}

我想显示结果:

    <iron-ajax url="http://localhost:8080/testapi" handle-as="json" on-response="handleResponse" last-response="{{cars}}" auto></iron-ajax>
<template is="dom-repeat" items="[[cars]]">
    <div>[[item.color]]</div>
</template>

但是我上面的代码出错了。你知道我的错误在哪里吗?

非常感谢。

0 个答案:

没有答案