приходит как пустая строка...то есть codeService отрабатывает после отображения html....Почему так?
public url = '';
public ngOnInit(): void {
this.codeService.getCode().subscribe(({ success, response }) => {
if (success) {
this.url = `https://telegram.me/${environment.bot_name}?start=${response}`;
this.socket.emit('code', response);
}
});
}
Тело subscribe выполняется не сразу потому что
Обсуждают сегодня