我在纸质对话框中有一个铁列表,我想用AJAX请求填充数据。 服务器的响应如下所示:
[{"name":"Bob"},{"name":"Tim"},{"name":"Mike"}]
这是我的自定义聚合物组件:
<link rel="import" href="../../bower_components/iron-list/iron-list.html">
<link rel="import" href="../../bower_components/iron-ajax/iron-ajax.html">
<link rel="import" href="../../bower_components/paper-dialog/paper-dialog.html">
<dom-module id="my-dialog">
<template>
<iron-ajax id="getAjax" url="/getdata" handle-as="json" lastResponse="{{data}}" auto></iron-ajax>
<paper-dialog id="loadDialog">
<h2>Header</h2>
<iron-list items="[[data]]" as="item" style="height:200px">
<template>
<div>
Name: <span>[[item.name]]</span>
</div>
</template>
</iron-list>
</paper-dialog>
</template>
为什么列表保持空白?
答案 0 :(得分:2)
lastResponse
必须重命名为last-response
。