Here are my component file and service file. I am trying to achieve that after the verification() service method is successfully called, I want to trigger another service method signup() within its success callback inside subscribe. However, I am encountering an error message as shown below:
https://i.stack.imgur.com/ORmkB.png
In angular1, this approach used to work but not in this case:
sampleService.meth1().success(function(){
//statement1...
sampleService.meth1().success(function(data){
//statement2...
}).error(function(){})
}).error(function(){});
})
Signup.component.ts
import { Component, Input } from '@angular/core';
import { Router } from '@angular/router';
import {User} from '../shared/model/user';
import {SignupService} from './signup.service';
import 'rxjs/add/operator/map';
import 'rxjs/add/operator/catch';
import 'rxjs/add/operator/debounceTime';
import 'rxjs/add/operator/distinctUntilChanged';
import 'rxjs/add/operator/switchMap';
import 'rxjs/add/operator/toPromise';
@Component({
moduleId: module.id,
selector: 'ym-signup',
templateUrl: 'signup.component.html',
styleUrls: ['signup.component.css'],
providers: [SignupService]
})
export class SignupComponent {
@Input()
user = {};
constructor(private router:Router, private signupService:SignupService) {
}
signup(selectedUser:User) {
this.signupService.verification(selectedUser)
.subscribe(data => {
swal({
title: 'Verify token sent on your Email.',
input: 'password',
inputAttributes: {
'maxlength': 10,
'autocapitalize': 'off',
'autocorrect': 'off'
}
}).then(function (password) {
this.signupService.signup(password)
.subscribe(data => {
localStorage.setItem('user', JSON.stringify(data));
this.router.navigate(['dashboard']);
},
error => alert(error));
})
},
error => alert(error));
}
goBack() {
this.router.navigate(['login']);
}
}
Signup.service.ts
import {User} from '../shared/model/user';
import { Headers, Http } from '@angular/http';
import 'rxjs/add/operator/toPromise';
import {Injectable} from '@angular/core';
import {Response} from "angular2/http";
import { Observable } from 'rxjs/Observable';
@Injectable()
export class SignupService {
private postUrl:string = '/api/users/signup';
private verify:string = '/api/users/verify';
constructor(private http:Http) {
}
verification(user:User):Observable<JSON> {
let headers = new Headers({
'Content-Type': 'application/json'
});
return this.http
.post(this.verify, JSON.stringify(user), {headers: headers})
.map(this.extractData)
.catch(this.handleError);
}
signup(token:string):Observable<any> {
let headers = new Headers({
'Content-Type': 'application/json'
});
return this.http
.post(this.postUrl, JSON.stringify({verificationToken:token}), {headers: headers})
.map(this.extractData)
.catch(this.handleError);
}
private extractData(res: Response) {
let body = res.json();
return body || { };
}
private handleError(error: any) {
let errMsg = (error.message) ? error.message :
error.status ? `${error.status} - ${error.statusText}` : 'Server error';
console.error(errMsg);
return Observable.throw(errMsg);
}
}