angularjs – 角度2,如何使用setTimeout?

前端之家收集整理的这篇文章主要介绍了angularjs – 角度2,如何使用setTimeout?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
登录页面中,当我们提交页面时,我有这个功能
checkLogin(){
    this.x_userS.getLogin(this.x_userO.login_name,this.x_userO.pwd_plain).then(response => this.x_userO=response);
    (function(){
        setTimeout(() => {
            if (this.x_userO.login_status == "1") {
                this.x_companyS.getCompanyByUser(this.x_userO.user_id).then(response => this.x_companyO=response);
                (function(){setTimeout(() => {
                    this.x_userS.setUser(this.x_userO);
                    this.x_companyS.setCompany(this.x_companyO);
                    this.router.navigate(['HomePage']);
                },2000);
            })();
            }
            else {
                window.alert("oops");
            }
        },2000);
    })();
}

其中x_userS是登录服务,x_userO是用户对象.我正在努力给予承诺两秒钟,以便在处理之前返回数据.没有setTimeout,它不会及时返回.

我尝试删除除了警报之外的所有内容,并在两秒钟后进行了验证.但是,它并没有识别出任何其他功能(){}的内容,所以我相信我需要传递所有的服务和对象.

有谁知道如何做到这一点?

如果你使用function(),那么这个.不会指向你的类中的变量.
Use()=>而是到处都是

setTimeout()周围的(function(){…})()似乎是冗余的.

猜你在找的Angularjs相关文章