我正在尝试将存储在本地存储中的值传递给http get url,但我收到了promise错误。我正在使用以下代码
this.storage.get("token").then((value) => {
return this.http.get("http://localhost/api/user/"+value)
.map(this.extractData)
.do(this.logResponse)
.catch(this.catchError)
})
我遇到的问题是将值传递给此http.get网址。