如何将本地存储值传递给url

时间:2018-01-22 09:35:45

标签: ionic-framework local-storage ionic3

我正在尝试将存储在本地存储中的值传递给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网址。

0 个答案:

没有答案