admin管理员组文章数量:1344953
How do I clean up resources after doing a Firestore operation, I want to use the "finally" block to close a dialog after saving the record but it plains it is not a function. I been searching for the API reference but all I find is the few examples in the getting started section.
my code is something like this:
db.collection("posts")
.doc(doc.id)
.set(post)
.then(function(docRef) {
//todo
})
.catch(function(error) {
console.error("Error saving post : ", error);
})
/*.finally(function(){
//close pop up
})*/
;
How do I clean up resources after doing a Firestore operation, I want to use the "finally" block to close a dialog after saving the record but it plains it is not a function. I been searching for the API reference but all I find is the few examples in the getting started section.
my code is something like this:
db.collection("posts")
.doc(doc.id)
.set(post)
.then(function(docRef) {
//todo
})
.catch(function(error) {
console.error("Error saving post : ", error);
})
/*.finally(function(){
//close pop up
})*/
;
Share
Improve this question
edited Mar 20, 2018 at 16:33
Doug Stevenson
318k36 gold badges456 silver badges473 bronze badges
asked Mar 20, 2018 at 16:13
user1279144user1279144
432 silver badges5 bronze badges
2 Answers
Reset to default 9Native Promises in node 6 don't have a finally() method. There is just then() and catch(). (See this table, node is on the far right.)
If you want do do something unconditionally at the end of a promise chain regardless of success or failure, you can duplicate that in both then() and catch() callbacks:
doSomeWork()
.then(result => {
cleanup()
})
.catch(error => {
cleanup()
})
function cleanup() {}
Or you can use TypeScript, which has try/catch/finally defined in the language.
A then following a then/catch will always get executed so long as:
- IF the catch is executed, the code within does not throw an error (if it does, the next catch is executed).
db.collection("posts")
.doc(doc.id)
.set(post)
.then(function(docRef) {
//any code, throws error or not.
})
.catch(function(error) {
console.error("Error saving post : ", error);
//this code does not throw an error.
}).then(function(any){
//will always execute.
});
本文标签: javascriptFirestore Set Catch FinallyStack Overflow
版权声明:本文标题:javascript - Firestore Set Catch Finally - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743806341a2542248.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论