无法从函数()中访问我的服务我在else条件中。我在浏览器终端中得到的是“TypeError:this._hitoService is undefined”。我需要在执行else条件时使用服务获取数据。我怎么能去做呢?
@Component({
selector: 'app-time-line',
templateUrl: './time-line.component.html',
styleUrls: ['./time-line.component.css'],
providers: [HitoService],
entryComponents: [FormHitoComponent]
})
export class TimeLineComponent implements OnInit, OnChanges {
@Input() calbuscador: String;
nom_cal1: any;
hito1: IHito[];
hito: any;
constructor(private _hitoService: HitoService) { }
ngOnInit() {
}
ngOnChanges(){
if (typeof this.calbuscador === "undefined"){
swal("Atencion!", "Busca un calendario con el buscador del Side Menu", "error")
}
else{
this.nom_cal1 = this.calbuscador;
swal({
title: "Are you sure?",
text: "Se cargara el calendario : " + this.calbuscador,
type: "warning",
showCancelButton: true,
confirmButtonColor: '#DD6B55',
confirmButtonText: 'Yes, I am sure!',
cancelButtonText: "No, cancel it!",
closeOnConfirm: false,
closeOnCancel: false
}, function(isConfirm) {
if (isConfirm) {
swal({
title: 'Cargando timeline!',
text: 'Cargando el Calendario en el Timline con sus hitos!',
type: 'success'
}, function() {
this._hitoService.getHitos()
.subscribe(hito1 =>{
this.hito1 = hito1
console.log(this.hito1); // defined!
console.log("nomcal1" + this.nom_cal1);
if (typeof this.nom_cal1 === "undefined"){
swal("Atencion!", "Busca un calendario con el buscador del Side Menu")
}else{
drawtimeline1_1(this.hito1, this.nom_cal1);
}
});
});
} else {
swal("Cancelled", "No se cargara el Timeline :)", "error");
}
});
}
}
答案 0 :(得分:2)
很多例子都存在同样的问题。经验法则,永远不要在function
的类中使用TypeScript
关键字。这将使this
上下文替换为当前函数作用域的上下文。始终使用() => {}
表示法:
swal({
...
}, (isConfirm) => {
});