我有文本框和按钮: -
<input #textbox type="text" [(ngModel)]="ObjJMessage.strStoryId">
<br />
<button (click)="TSendPostRequest()">Send POST Request</button>
我在单独的JMessage.ts文件中有typescript类: -
export class JMessage {
strStoryId: string;
strStoryDesc: string;
}
我想绑定sttoryid文本框值(无论用户写入哪个) JMessage typescript类中的strStoryId
我写道: -
[(ngModel)]="ObjJMessage.strStoryId"
在文本框中为此目的。 但它不起作用。
修改:
export class AppComponent {
ObjJMessage: JMessage = new JMessage();
TSendPostRequest() {
//JSON jPostData= JSON.stringify(JAttributes);
JSendPostRequest(JMessage.prototype.strStoryId);
}
}