离子2:设置间隔

Ionic 2 : Set interval(离子2:设置间隔)
本文介绍了离子2:设置间隔的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我尝试在 .ts 文件中设置间隔,但我不明白如何在间隔中使用同一文件中的函数.

I try to set an interval in a .ts file but I don't understand how to use a function in the same file in the interval.

解释一下:

我的间隔设置:

this.task = setInterval(function () {
            this.refreshData();
        }, 300);

和我的函数在同一个 ts 文件中:

And my function in the same ts file :

refreshData() : void{
        console.log('update...');
    }

当我在我的设备上运行时,我遇到了这个错误:

When I run on my device, I have this error :

04-19 10:38:57.535 21374-21374/com.ionicframework.app722890 I/chromium: [INFO:CONSOLE(79432)] "TypeError: this.refreshData is not a function
                                                                                      at file:///android_asset/www/build/main.js:10987:18
                                                                                      at t.invokeTask (file:///android_asset/www/build/polyfills.js:3:10284)
                                                                                      at Object.onInvokeTask (file:///android_asset/www/build/main.js:39626:37)
                                                                                      at t.invokeTask (file:///android_asset/www/build/polyfills.js:3:10220)
                                                                                      at e.runTask (file:///android_asset/www/build/polyfills.js:3:7637)
                                                                                      at invoke (file:///android_asset/www/build/polyfills.js:3:11397)
                                                                                      at e.args.(anonymous function) (file:///android_asset/www/build/polyfills.js:2:30193)", source: file:///android_asset/www/build/main.js (79432)

我尝试这种方式但我不工作:

I try this way but I doesn't work :

this.task = setInterval(this.refreshData(), 300);

这只会调用我的函数一次.

This call my function only one time.

有人有想法吗?

推荐答案

使用箭头函数

this.task = setInterval(() => {
  this.refreshData();
}, 300);

或像这样存储上下文

let self = this;
this.task = setInterval(function () {
  self.refreshData();
}, 300);

或使用绑定

this.task = setInterval((function () {
  this.refreshData();
}).bind(this), 300);

如果只有一个函数调用:

if only one function call:

this.task = setInterval(this.refreshData.bind(this), 300);

您可以通过 https://github.com/getify/You-Dont-Know-JS/tree/1st-ed/this%20%26%20object%20prototypes/ch1.md

这篇关于离子2:设置间隔的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

How do I can get a text of all the cells of the table using testcafe(如何使用 testcafe 获取表格中所有单元格的文本)
node_modules is not recognized as an internal or external command(node_modules 未被识别为内部或外部命令)
How can I create conditional test cases using Protractor?(如何使用 Protractor 创建条件测试用例?)
PhantomJS and clicking a form button(PhantomJS 并单击表单按钮)
Clicking #39;OK#39; on alert or confirm dialog through jquery/javascript?(在警报上单击“确定或通过 jquery/javascript 确认对话框?)
QunitJS-Tests don#39;t start: PhantomJS timed out, possibly due to a missing QUnit start() call(QunitJS-Tests 不启动:PhantomJS 超时,可能是由于缺少 QUnit start() 调用)