export class AdduserComponent implements OnInit {
dict = {}
onsubmit(form:Form){
this.http.post(this.url, JSON.stringify(post_data)).subscribe( response => {
console.log(response);
if(response['Successful']){
this.dict["data"] = object.keys(response['successful'])[0]
this.router.navigate(['/users'])
}
}
}
Здесь я объявил пустой dict и хочу обновить его после того, как получу ответ от API.