我有一个需要大约4分钟(大约)才能完成聚合物应用程序的api。当我在精确的2分钟发送请求时,即使超时后也发送了另一个请求,并且将反跳时间设置为10分钟。我想停止发送第二个请求,或者等待第一个请求完成。有人建议我使用fetch代替iron-ajax。我需要修复铁ajax本身。我可以为此提供解决方案吗?
代码在这里
<iron-ajax id="request"
url={{request}}
verbose
handle-as="json"
method="{{method}}"
body="{{body}}"
params="{{requestParams}}"
on-error="onError"
loading="{{loading}}"
timeout=600000
content-type="application/json"
debounce-duration=600000
last-error="{{lastError}}"
last-response="{{lastResponse}}">
我希望这会解决。预先感谢
答案 0 :(得分:0)
您可以设置一个布尔变量,以便能够调用this.$.request.generateRequest()
之类的东西
static get properties() {return {
_isRequest: {
type: Boolean,
value: true}}}
static get observers(){ return ['_checkLastResponse(lastResponse)'] }
__checkLastResponse(r) {
// we have received a response from iron-ajax so allow for next call
if (r) this._isRequest = true;}
// As you provided above code, you call ajax manually.
_ajax_call() {
if (this._isRequest) {
this.$.request.generateRequest();
this._isRequest = false; }
}
static get template() { return `
<paper-button disabled="[[!_isReruest]]" on-tap="ajax_call">AJAX CALL</paper-button>
.......
`;}
因此,您可以删除不必要的属性,例如debounce-duration=600000
等。