1

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、ページが更新されないようにする方法は?

4

1 に答える 1

1

Web コンポーネントにいくつかのエラーがあります

class MyFox extends PolymerElement {
  static get template() {
    return html`
          <iron-ajax
            auto
            id="dataAjax"
            url=""
            handle-as="json"
            on-response="handleResponse">
          </iron-ajax>

          <button type="button" on-tap="nextImg">Next Image</button>
          <br> <br>
          <img src="[[imgUrl]]" width="300">
    `;
  }
  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
    this.$.dataAjax.generateRequest();
  }
}

window.customElements.define('my-fox', MyFox);
于 2018-08-28T11:22:31.303 に答える