当前位置:  开发笔记 > 编程语言 > 正文

Angular2 - TypeScript:在AppComponent中超时后递增一个数字

如何解决《Angular2-TypeScript:在AppComponent中超时后递增一个数字》经验,为你挑选了2个好方法。

我想创建一个简单的Angular2应用程序TypeScript.看起来很简单,但我无法实现我想要的目标.

我想在模板中显示属性值.我想使用setTimeout在1秒后更新相同的内容.

Plunkr代码是在这里:代码上Plunkr

我写的是这里:

import {Component} from 'angular2/core';

interface Hero {
  id: number;
  name: string;
}

@Component({
  selector: 'my-app',
  template:`

Number Increment

{{n}}

` }) export class AppComponent { public n : number = 1; setTimeout(function() { n = n + 10; }, 1000); }

当我使用此代码时,我收到以下错误:

Uncaught SyntaxError: Unexpected token ;

为什么我无法访问n,这与我们以前在JavaScript中的操作范围相同.如果我没有错,我们也可以在TypeScript中使用纯JavaScript.

我甚至试过了

export class AppComponent {
  public n : number = 1;
  console.log(n);
}

但我无法n在控制台中看到它的价值.

当我尝试

export class AppComponent {
  public n : number = 1;
  console.log(this);
}

我得到与上面相同的错误.为什么我们不能在这个地方访问它.我想,this是指JavaScript中的当前上下文.

提前致谢.



1> toskv..:

这不是有效的打字稿代码.您不能在类的主体中进行方法调用.

export class AppComponent {
  public n: number = 1;
  setTimeout(function() {
    n = n + 10;
  }, 1000);
}

而是在类的构造函数中移动setTimeout调用.

export class AppComponent {
  public n: number = 1;

  constructor() {
    setTimeout(() => {
      this.n = this.n + 10;
    }, 1000);
  }

}

同样在TypeScript中,您只能通过来引用类属性或方法.


你应该使用箭头功能.它们允许您使用***this***关键字而无需将其存储在另一个变量中.(例如:`setTimeout(()=> {this.n + = 10;},1000);`
谢谢@toskv它奏效了.实际上`this`引用在`setTimeout`函数内部没有工作.为此,我必须使用[更新的Plunkr代码]中给出的`that`和`this`(http://plnkr.co/edit/RhYhVS84wnOdPuhYUG1E?p=preview)

2> Thierry Temp..:

您应该将处理放入类构造函数或OnInit钩子方法中.

推荐阅读
N个小灰流_701
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有