Angular2为什么数据在服务器端没有绑定(Angular2 why data is not binding at server side)

编程入门 行业动态 更新时间:2024-10-25 07:26:02
Angular2为什么数据在服务器端没有绑定(Angular2 why data is not binding at server side)

这里即时使用angular2在服务器端,当我尝试插入数据从客户端到服务器值不绑定在服务器端

state.ts

export class State { Sts_Id: number; Sts_Name: string; Cnt_Id: number; } StateObj: State = new State() StateArray: Array<State> = new Array<State>(); SaveState(saveState: State) { let headers = new Headers({ 'Content-Type': 'application/json; charset=utf-8'}); let options = new RequestOptions({ headers: headers}); var GetstateValue = this.http.post("http://localhost:34339/Home/StatePost" + '/' + saveState, options); GetstateValue.subscribe((res => this.Success(res)), res => this.Error(res)); console.log(GetstateValue); }

Here im using angular2 at server side when i try to insert data from client to server values is not binding at server side

state.ts

export class State { Sts_Id: number; Sts_Name: string; Cnt_Id: number; } StateObj: State = new State() StateArray: Array<State> = new Array<State>(); SaveState(saveState: State) { let headers = new Headers({ 'Content-Type': 'application/json; charset=utf-8'}); let options = new RequestOptions({ headers: headers}); var GetstateValue = this.http.post("http://localhost:34339/Home/StatePost" + '/' + saveState, options); GetstateValue.subscribe((res => this.Success(res)), res => this.Error(res)); console.log(GetstateValue); }

最满意答案

尝试这个:

export class State { Sts_Id: number; Sts_Name: string; Cnt_Id: number; } StateObj: State = new State() StateArray: Array<State> = new Array<State>(); SaveState(saveState: State) { let headers = new Headers({ 'Content-Type': 'application/json; charset=utf-8'}); let options = new RequestOptions({ headers: headers}); var GetstateValue = this.http.post("http://localhost:34339/Home/StatePost",{saveState}, options); GetstateValue.subscribe((res => this.Success(res)), res => this.Error(res)); console.log(GetstateValue); }

Try this:

export class State { Sts_Id: number; Sts_Name: string; Cnt_Id: number; } StateObj: State = new State() StateArray: Array<State> = new Array<State>(); SaveState(saveState: State) { let headers = new Headers({ 'Content-Type': 'application/json; charset=utf-8'}); let options = new RequestOptions({ headers: headers}); var GetstateValue = this.http.post("http://localhost:34339/Home/StatePost",{saveState}, options); GetstateValue.subscribe((res => this.Success(res)), res => this.Error(res)); console.log(GetstateValue); }

更多推荐

GetstateValue,new,State,服务器,电脑培训,计算机培训,IT培训"/> <meta name="d

本文发布于:2023-08-02 21:00:00,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1381517.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:绑定   服务器端   数据   side   server

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!