0

我试图getResponse在 Web 组件完成加载时运行一次。但是,当我尝试运行它时,该debounce函数仅充当异步延迟,并在 5000 毫秒后运行 4 次。

static get properties() {
  return {
    procedure: {
      type: String,
      observer: 'debounce'
    }
  }
}

debounce() {
  this._debouncer = Polymer.Debouncer.debounce(this._debouncer, Polymer.Async.timeOut.after(5000), () => {
    this.getResponse();
  });
}

getResponse() {
  console.log('get resp');
}

getResponse加载元素后运行一次需要什么?

4

1 回答 1

0

您确定要为此使用去抖动器吗?您可以只使用 connectedCallBack 来获取一次性事件

class DemoElement extends HTMLElement {
  constructor() {
    super();
    this.callStack = 'constructor->';
  }
  
  connectedCallback() {
    this.callStack += 'connectedCallback';
    console.log('rendered');
    fetch(this.fakeAjax()).then((response) => {
      // can't do real ajax request here so we fake it... normally you would do 
      // something like this.innerHTML = response.text();
      // not that "rendered" get console logged before "fetch done"
      this.innerHTML = `
        <p>${this.callStack}</p>
        <p>${response.statusText}</p>
      `;
      console.log('fetch done');
    }).catch(function(err) {
      console.log(err); // Error :(
    });
  }
  
  fakeAjax() {
    return window.URL.createObjectURL(new Blob(['empty']));
  };
}
customElements.define('demo-element', DemoElement);
<demo-element></demo-element>

如果你真的需要使用观察者,你也可以在你的代码中设置一个标志并this.isLoadedconnectedCallback()你的观察者代码中检查它。

于 2018-02-27T22:14:38.527 回答