验证电子邮件并以角度js

时间:2016-03-03 06:44:42

标签: angularjs json

我有一个注册页面,注册完成后,我需要在注册后进行分页,并将电子邮件验证链接发送到您的邮箱。我在我的注册控制器中完成了这个,但我面临的问题是,完成电子邮件验证后,它必须重定向到我的另一个页面,说Emailvalidationsuccess。如何完成这项工作。

注册控制器

  UserService.Create(json)
                .then(function (response) {
                    if (response.json.response.statuscode == 0) {
                      console.log(response)
                      FlashService.Success('Registration successful', true);
                      $location.path('/afterregister');
                    } else {
                        FlashService.Error(response.json.response.statusmessage);
                        vm.dataLoading = false;
                    }
                });
        }
    };

})();

我通过堆栈发现服务器端JSON请求可以有参数URL,我可以在完成电子邮件验证后给我的URL重定向。如何给我本地机器中的url重定向。就像我有像这样的JSON请求

{"json":  
       {"request":
                 {"servicetype":"21",
                  "functiontype":"1001",

                     "data":{
                            "email":"abc@gmail.com",
                            "password":"12345",
                            "retypepassword":"12345"
                           },
                        "url":""
                 }
        }
}

0 个答案:

没有答案