Polymer アプリを作成していて、Google ドライブ アカウントからすべてのスプレッドシートを読み込もうとしていますが、問題が発生しています。個々のスプレッドシートを一度に取り込むことはできますが、すべてを一度に取り込む方法はありますか? ドキュメント(添付)には、キーを省略して可能であると書かれていますが、運がありません。以下の私のコードを見つけてください。どんな助けでも大歓迎です。ジャスティン
my-dashboard.html
以下は個々のスプレッドシートで機能します
<google-sheets
key="XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
client-id="XXXXXXXXXXXXXX.apps.googleusercontent.com"
rows="{{rows}}"
published >
</google-sheets>
<my-googlesheets-element rows="{{rows}}" user="[[user]]"></my-googlesheets-element>
my-googlesheets-element.html
<dom-module id="my-googlesheets-element">
<template>
<style></style>
<h1>google sheet comp here</h1>
<template is="dom-repeat" items="{{rows}}">
<div id$="[[item.$key]]">
<p>{{item.gsx$author.$t}}</p>
</div>
</template>
</template>
<script>
Polymer({
is: "my-googlesheets-element",
properties: {
rows: {
type: Object
},
},
observers: [ 'logRows(rows.*)' ],
logRows: function() {
console.log('rows data', this.rows)
},
})
</script>
</dom-module>