gpt4 book ai didi

Javascript - 代码不会停止

转载 作者:行者123 更新时间:2023-11-29 23:45:41 24 4
gpt4 key购买 nike

我正在努力扩展我的知识(初级阶段)。基本上,我想使用 promises 给我的用户写新邮件。我的 Playground 项目中有一些代码库,但我的功能并没有就此停止。这是应该写入数据库的函数:

changeEmailAddress(user, newEmail) {
new Promise((resolve, reject) => {
user.setEmail(newEmail);
userRepository.saveUser(user).then(() => {
return resolve();
}).catch(e => {
return reject(e);
});
}
);
}

如果我没记错的话,我应该这样使用它:

changeEmailAddress(user, "hello@there.com").then(function () {

//it never comes in here :(
})

我在用户身上有类似的功能,但我的功能没有进入“then”

最佳答案

您正在提交 explicit promise constructor anti-pattern .您的代码不需要比

更复杂
changeEmailAddress(user, newEmail) {
user.setEmail(newEmail);
return userRepository.saveUser(user);
}

当然,请确保不要忘记 return!

关于Javascript - 代码不会停止,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44280855/

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