文本框值未绑定到Typescript类

时间:2017-06-21 09:44:49

标签: javascript c# .net typescript angular2-template

我有文本框和按钮: -

<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);
    }

}

0 个答案:

没有答案