這是我的服務器數據:Angular2 HTTP響應不確定
[
{
"name" : "testname"
},
{
"name" : "testnametwo"
}
]
我試圖用Angular2 http.get得到這個數據。我想用下面的代碼:
private _url : string = "appone/api/user.json"
user = []
constructor(private http : Http) { }
getUsers() {
let res = this.http.get(this._url).map((response : Response) => {
return response.json()
})
res.subscribe((data) => {
this.user = data
})
alert(this.user.name)
}
但我沒有得到任何結果。我不知道我錯在哪裏。
任何幫助,非常感謝。