gpt4 book ai didi

angular - 调用服务 angular2 错误 'Property ' 然后'在类型 'Subscription' 上不存在

转载 作者:太空狗 更新时间:2023-10-29 18:21:02 24 4
gpt4 key购买 nike

我正在尝试从我的 login.ts 调用服务,但我不断收到不同的错误。这是我的代码

登录.ts

import { Component } from '@angular/core';
import { Auth, User } from '@ionic/cloud-angular';
import { NavController } from 'ionic-angular';
import { Storage } from '@ionic/storage';
import { TabsPage } from '../tabs/tabs';
import { AuthService } from '../../services/auth/auth.service';
import {Observable} from 'rxjs/Rx';


@Component({
templateUrl: 'login.html'
})

export class LoginPage {
authType: string = "login";
error: string;
storage: Storage = new Storage();

constructor(public auth: Auth, public user: User, public navCtrl: NavController, public authService: AuthService) {}

facebookLogin() {
this.auth.login('facebook').then((success) => {
this.authService.signup(this.user.social.facebook).then((success) => {

});
});

}
}

auth.service.ts

import { Storage } from '@ionic/storage';
import { AuthHttp, JwtHelper, tokenNotExpired } from 'angular2-jwt';
import { Injectable, NgZone } from '@angular/core';
import { Observable } from 'rxjs/Rx';
import { Http, Headers } from 'angular2/http';

@Injectable()
export class AuthService {

jwtHelper: JwtHelper = new JwtHelper();
// contentHeader = new Headers({"Content-Type": "application/json"});
storage: Storage = new Storage();
refreshSubscription: any;
user: Object;
zoneImpl: NgZone;
idToken: string;
error: string;

constructor(private authHttp: AuthHttp, zone: NgZone) {
this.zoneImpl = zone;
// Check if there is a profile saved in local storage
this.storage.get('profile').then(profile => {
this.user = JSON.parse(profile);
}).catch(error => {
console.log(error);
});

this.storage.get('id_token').then(token => {
this.idToken = token;
});
}

public authenticated() {
return tokenNotExpired('id_token', this.idToken);
}

public signup(params) {
var url = 'http://127:0.0.1:3000/api/v1/register';
return this.authHttp.post(url, JSON.stringify(params))
.map(res => res.json())
.subscribe(
data => {this.storage.set('id_token', data.token)},
err => this.error = err
);
}
}

基本上我想要的是当点击 facebookLogin() 时,它会转到 auth.service.ts 并获取 singup() 返回值的方法。

但我一直收到 Property 'then' does not exist on type 'Subscription'。

这是什么意思,我该如何解决?

最佳答案

更改订阅toPromise()(不要忘记导入toPromise)

  public signup(params) {
var url = 'http://127:0.0.1:3000/api/v1/register';
return this.authHttp.post(url, JSON.stringify(params))
.map(res => res.json())
.toPromise(
data => {this.storage.set('id_token', data.token)},
);
}

或到 .map(),然后在调用站点上使用 subscribe() 而不是 then()

 public signup(params) {
var url = 'http://127:0.0.1:3000/api/v1/register';
return this.authHttp.post(url, JSON.stringify(params))
.map(res => {
let data = res.json();
this.storage.set('id_token', data.token);
return data;
});
}
  facebookLogin() {
this.auth.login('facebook').then((success) => {
this.authService.signup(this.user.social.facebook).subscribe((success) => {

});
});

}

关于angular - 调用服务 angular2 错误 'Property ' 然后'在类型 'Subscription' 上不存在,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40339490/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com