我是以这种方式做到的,例如在表格中:
<dom-module id="rest-api">
<template>
<style>
:host {
display: block;
box-sizing: border-box;
}
</style>
<iron-ajax
auto
url="http://localhost:8080/cockpit/clients"
handle-as="json"
last-response="{{response}}"
></iron-ajax>
<table>
<template is="dom-repeat" items="{{response}}">
<tr>
<td>{{item.id}}</td>
<td>{{item.status}}</td>
</tr>
</template>
</table>
*<google-chart
type='pie'
options='{"title": "Client-Status"}'
data='[["Status", "Quantity"], ["",0], ["Offline", **{{off}}**], ["",0], ["Online", **{{on}}**]]'
></google-chart>*
</template>
通过我的休息api我有一系列客户端,但我不知道如何计算它们以及如何绑定饼图中的值。
感谢您的帮助!