Я хочу присвоить атрибуту угловой услуги с результатом прибывает из
функция обратного вызова
У меня есть этот угловой сервис:
@Injectable()
export class SkillsManagerService {
private skill: any;
private event: any;
constructor() {
// i have an event instance
event = getEvent ();
this.startWatching();
}
//function that start watching the event
function startWatching() {
event.watch(function(err, res) {
// how to assign this.skill = res ?
}
});
}