gpt4 book ai didi

javascript - 实现 JavaScript Promise 的最佳实践

转载 作者:太空宇宙 更新时间:2023-11-04 02:52:09 28 4
gpt4 key购买 nike

大家好,我对 js 和异步编程还很陌生。我使用node.js和express开始学习js服务器端和异步编程。我在实现回调 promise 异步之类的东西时遇到问题。我曾经使用过回调,但我认为我的代码变得如此困惑且难以维护。现在我尝试在下面的代码中实现 promise 。我的问题是:我使用 Promise There 的方式是一个好的实践吗?因为我认为如果我像下面的代码那样实现“嵌套” promise ,那么与回调 hell 相比没有什么不同。使用 Promise 的最佳实践是怎样的?谢谢

update_data_profil(req, res) {
var nama_unit_org = req.body.nama_unit_org;
var nama_ketua_unit_org = req.body.nama_ketua_unit_org;
var nip_nim = req.body.nip_nim;
var email = req.body.email;
var no_hp = req.body.no_hp;
var params;
var user;
if (helper.isExist(nama_unit_org) && helper.isExist(nama_ketua_unit_org) && helper.isExist(email)
&& helper.isExist(nip_nim) && helper.isExist(no_hp)) {
if (nip_nim !== req.user.nip_nim) {
params = {
nip_nim: nip_nim
}
user = new User_Model(params);
user.getDataProfilByNIPorNIM()
.then(function (result) {
if (result) {
req.flash('message_err', "NIP/NIM telah dipakai akun lain.");
res.redirect('/manajemen_profil');
}
else {
params = {
id_user: req.user.id_user,
nip_nim: nip_nim,
nama_ketua_unit_org: nama_ketua_unit_org,
nama_unit_org: nama_unit_org,
email: email,
no_hp: no_hp,
};
user = new User_Model(params);
user.editDataProfil()
.then(function () {
params = {
session_id: req.sessionID
};
user = new User_Model(params);
user.clearSession()
.then(function () {
req.flash('message_success', 'Edit data profil berhasil. Silahkan login untuk melanjutkan');
res.render('index/login',
{
message_success: req.flash('message_success')
});
}).catch(function (err) {
req.flash('message_err', "Internal server error");
res.redirect('/');
});
})
.catch(function (err) {
req.flash('message_err', "Internal server error.");
res.redirect('/');
});
}

}).catch(function (err) {
req.flash('message_err', "Internal server error.");
res.redirect('/');
})
}
else {
params = {
id_user: req.user.id_user,
nama_ketua_unit_org: nama_ketua_unit_org,
nama_unit_org: nama_unit_org,
email: email,
no_hp: no_hp
};
user = new User_Model(params);
user.editDataProfil()
.then(function () {
req.flash('message_success', "Berhasil update profil.");
res.redirect('/manajemen_profil');
})
.catch(function (err) {
req.flash('message_err', "Internal server error");
res.redirect('/manajemen_profil');
});
}
}
else {
req.flash('message_err', "Tidak boleh ada field yang kosong!");
res.redirect('/manajemen_profil');
}
}

最佳答案

Nodejs Promise 最美丽的优点之一是避免回调 hell 过程。对于 Promise,如果你再次将一个嵌套在另一个中,那么你就创建了一个 Promise hell ;) 。

下面是使用 Promise 的更好方法之一。

链接:

 // Promises example using 'then'
user.getDataProfilByNIPorNIM().then(function(user) {
...
return user.editDataProfil();
}).then(function(editDataProfilResults) {
....
return user.clearSession();
}).then(function(clearSessionResult) {
....
return
}).catch(function(err){
.....
process error
})

我发现了下面的链接,它解释了 promise 的用法。这可能会有所帮助。

https://www.joezimjs.com/javascript/javascript-asynchronous-architectures-events-vs-promises/

关于javascript - 实现 JavaScript Promise 的最佳实践,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50713085/

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