Я использую Angular 9, и у меня есть этот код:
app.component. html
<br><br>
<div class="container-fluid">
<div class="row">
<div class="col-md-12">
<input #cmd />
<button (click)="runCommand2(cmd.value)">runCommand</button>
<br><br>
RESULT: {{ output }}
</div>
</div>
</div>
Затем в моем app.component.ts
export class AppComponent {
output: any;
constructor(private myService: myService) {}
runCommand2(command) {
this.myService.executeShell2(command).subscribe(
response => {
if (response) {
this.output = response;
console.log(this.output); // This appears in the console but does not appear in {{ output }} although the data is there
}
},
error => {
this.output = error;
}
);
}
}
Я также хочу упомянуть, что по какой-то причине, если я снова вызову метод, вывод будет заполнен в представлении во второй раз, но не в первый раз, хотя данные есть. Есть идеи, в чем может быть проблема?