NativeScript没有获得Set-Cookie

时间:2018-11-27 13:50:46

标签: angular http nativescript angular-http angular-httpclient

我正在用Nativescript构建应用程序,但是在执行登录功能时出现了一些奇怪的行为,例如在我进行的第一个登录调用中,我得到了“ Set-Cookie”标头,但是随后退出并随后当我再次登录时,不再获得该标题。

下面有登录服务:

_loginPost(url: string, params: any): Promise<any> {
    return new Promise<Response>((resolve, reject) => {
      const res = new Response();
      if (this.checkConnection()) {
        this.http.post(this.endpoint + url, params, {
    observe: "response",
    "Content-Type":  "application/json"
  }).toPromise().then((response: any) => {
            try {
                const cookie = response.headers.get("Set-Cookie");
                res.wasSuccess(cookie.slice(0, cookie.indexOf(";")).toString());
            } catch (error) {
              res.failed("ERROR");
            }
            resolve(res);
        }, (e) => {
          if (e && e.error) {
            if (e.status === 403) {
              res.failed("MUST_LOGOUT");
            } else {
              res.failed(e.error.cause);
            }
          } else {
            res.failed("ERROR");
          }
          resolve(res);
        });
      } else {
        res.failed("No Internet Conection");
        resolve(res);
      }
  });
  }

下面有两个请求的图像

第一个请求: enter image description here

第二个请求: enter image description here

0 个答案:

没有答案