Ionic 如何正确重定向到另一个页面后,在离子Angular 请求?

xlpyo6sf  于 2023-10-14  发布在  Ionic
关注(0)|答案(1)|浏览(143)

我试图重定向到另一个页面后,用户注册离子Angular ,但我没有得到下面的代码:

this.http.post('http://127.0.1.1:3001/api/signup',user)
        .subscribe({
            next: (res) => {if(res == "OK"){this.router.navigateByUrl("/otp")}},
            error: error => console.error(error),
            complete: () => this.router.navigateByUrl("/otp")
   });
kq4fsx7k

kq4fsx7k1#

你可以这样做

.subscribe((res) => {
        if (res == "OK") {
          this.router.navigate(['otp']);
        } else {
          this.errmsgshow = true;
          this.errmsg = res.msg;
        }

相关问题