gpt4 book ai didi

Angular 2 找不到名称 SimpleChanges

转载 作者:太空狗 更新时间:2023-10-29 19:36:22 26 4
gpt4 key购买 nike

编译代码时出现此错误:找不到名称 SimpleChanges。我是 Angular 2 的新手,您能帮我找出错误所在吗?这是我的 home.ts:

import { Component } from '@angular/core';

import { NavController } from 'ionic-angular';
import {Observable} from 'rxjs/Rx';

@Component({
selector: 'page-home',
templateUrl: 'home.html'
})
export class HomePage {
date: Date;
constructor(public navCtrl: NavController) {
this.date = new Date();
}


ticks = 0;
ngOnChanges(changes: {[propertyName: string]: SimpleChanges}){
if(changes['ticks']){
if(this.ticks == 20)
this.ticks = 0;
}
}
ngOnInit(){
let timer = Observable.timer(0,1000);
timer.subscribe(t=>this.ticks = t);
};



}

最佳答案

您忘记从 @angular/core 导入 SimpleChanges 接口(interface)。

import { SimpleChanges } from '@angular/core';

关于Angular 2 找不到名称 SimpleChanges,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41848230/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com