我有一个带有此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>
但是我上面的代码出错了。你知道我的错误在哪里吗?
非常感谢。