私は、APIから情報を収集し、結果のオブジェクトキーに基づいて子要素に配布する必要があるPolymer要素を作成しています。親オブジェクトの情報をPolymerに表示する方法は?
my-parent
要素は、ajax呼び出しを実行します。 response()
関数で取得された場合の応答です。
私の質問はこれです。受信した情報をどのようにして保存し、それを配布して子要素に表示できるのですか?
App.html
<my-parent collector="1">
<h1>The Results</h1>
<h3><my-child name="title"><!-- should output FOO --></my-child></h3>
<h3><my-child name="description"><!-- should output BAR --></my-child></h3>
</my-parent>
私-parent.html
<dom-module id="my-parent">
<template>
<style>
:host {
display: block;
}
</style>
<content></content>
<iron-ajax auto url="//someurl/posts/[[collector]]" handle-as="json" last-response="{{response}}" on-response="onResponse" id="xhr"></iron-ajax>
</template>
<script>
Polymer({
is: 'my-parent',
properties: {
collector: {
type: String,
notify: true
},
response: {
type: String
}
},
onResponse: function(response){
/* WHAT TO DO HERE? */
}
})
</script>
</dom-module>
APIの結果から//someurl/posts/1
{
"title": "FOO",
"description": "BAR"
}
私-のchild.html
<dom-module id="my-child">
<template>
<style>
:host {
display: block;
}
</style>
{{itemes}}
</template>
<script>
Polymer({
is: 'my-child',
properties: {
itemes: {
type: String,
value: function(){
return "what to do here?";
}
}
},
key: {
type: String,
notify: true
}
})
</script>
</dom-module>