POST请求不会从角度触发

时间:2018-11-29 18:25:18

标签: asp.net angular rest post ionic-framework

我已经建立了一个保存游戏数据的数据库。测试表明,将“团队”添加到“游戏”中确实可行。但是,我的角度应用程序不会触发数据库。

我确保数据库功能可以在ASP.net中正常使用

export class AlloutProvider {
    url: string;
    constructor(private _http: HttpClient) {
        this.url = "http://localhost:33324/api/v1"
    };

    postTeam(team: Team) {
        console.log(this.url + "game/team")
        console.log(JSON.stringify(team))
        return this._http.post(this.url + "game/team", JSON.stringify(team));
    }
}

Verification of the URL

1 个答案:

答案 0 :(得分:1)

更改

 this._http.post(this.url + "game/team", JSON.stringify(team));

对于

this._http.post(this.url + "/game/team", JSON.stringify(team));