iron-ajax を使用したポリマー要素を作成しています。これにより、パブリック API がヒットし、ランダムな fox imageUrl が取得され、DOM に表示されます。
要件
をクリックするbutton
と、API への新しい呼び出しが必要になります。これにより、新しい URL が得られます。現在私は使用して<button type="button" onClick="window.location.reload();">
います。しかし、これはページを更新します。
問題
このStackOverflow ソリューションを調べて、バージョン 3 ソリューションに変更しました。
class MyFox extends PolymerElement {
static get template() {
return html`
<dom-bind>
<template id="temp">
<iron-ajax
auto
id="dataAjax"
url=""
handle-as="json"
on-response="handleResponse"
id="apricot">
</iron-ajax>
<button type="button" onClick="window.location.reload();">Next Image</button>
<br> <br>
<img src="[[imgUrl]]" width="300">
</template>
</dom-bind>
`;
}
static get properties() {
return {
prop1: {
type: String,
value: 'my-fox',
},
imgUrl: {
type: String,
}
};
}
handleResponse(event, res) {
this.imgUrl = res.response.image;
}
nextImg() {
// new call to iron-ajax for new image
var temp = document.querySelector('#temp');
temp.$.dataAjax.generateRequest();
}
}
window.customElements.define('my-fox', MyFox);
しかし、次のエラーが発生します。
リスナーメソッドhandleResponse
が定義されていません
質問
iron-ajax
ボタンのクリックで手動でトリガーして、新しいページを取得できresponse or imageUrl
、ページが更新されないようにする方法は?