HTML:
<input [(ngModel)]="timestamp">
<button (click)="getInstantDetails()">display</button>
component.ts
timestamp: any;
getInstantDetails(): void {
console.log(this.timestamp);
}
app.module.ts
import {FormsModule} from '@angular/forms';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
HttpClientModule,
FormsModule,
],
providers: [SchedulerService],
bootstrap: [AppComponent]
})
export class AppModule { }
我的时间戳值未定义。这里有什么我想念的吗?
答案 0 :(得分:0)
一切都按预期工作。您没有将timestamp: any
初始化为undefined
。
更改timestamp: string = 'hello';
和getInstantDetails()将记录'hello'
。