我已经建立了一个保存游戏数据的数据库。测试表明,将“团队”添加到“游戏”中确实可行。但是,我的角度应用程序不会触发数据库。
我确保数据库功能可以在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));
}
}
答案 0 :(得分:1)
更改
this._http.post(this.url + "game/team", JSON.stringify(team));
对于
this._http.post(this.url + "/game/team", JSON.stringify(team));