需要知道我的功能是否结构合理并正确返回承诺。我正在使用主条件if语句处理新数据和已删除数据。如果数据存在,我正在执行数据库集并返回一个promise return ProposalsRef.child(recipient).set
。如果数据不存在,我返回return ProposalsRef.once('value')...
。每当触发该函数时,它将只返回一个promise(这种方式永远不会超时)。我也在最后实施else{return null;}
以避免超时(不确定这是不是一个好习惯)
exports.ObserveJobs = functions.database.ref("/jobs/{jobid}").onWrite((event) => {
const jobid = event.params.jobid;
if (event.data.exists() && !event.data.previous.exists()) {
const recipient = event.data.child("recipient").val();
if (recipient !== null) {
let ProposalsRef = admin.database().ref(`proposals/${jobid}`);
return ProposalsRef.child(recipient).set({
budget: event.data.child("budget").val(),
description: event.data.child("description").val(),
ischat: false,
isinvitation: true,
timing: event.data.child("timing").val(),
});
};
} else if (!event.data.exists() && event.data.previous.exists()) {
let ProposalsRef = admin.database().ref(`proposals/${jobid}`);
return ProposalsRef.once('value').then(snapshot => {
if (snapshot.hasChildren()) {
const updates = {};
snapshot.forEach(function(child) {
updates[child.key] = null;
});
return ProposalsRef.update(updates);
}
});
}else{
return null;
};
});
我还想知道,假设我必须执行多个数据库操作而不是一个。见下面的例子:
return contractRef.once('value').then(snapshot => {
let client = snapshot.child("contractor").val();
let freelancer = snapshot.child("talent").val();
const clientRef = admin.database().ref(`users/${client}`);
const freelancerRef = admin.database().ref(`users/${freelancer}`);
clientRef.child("/account/jobcount").transaction(current => {
return (current || 0) + 1;
});
freelancerRef.child("/account/jobcount").transaction(current => {
return (current || 0) + 1;
});
clientRef.child("/notifications").push({
timestamp: admin.database.ServerValue.TIMESTAMP,
key: contractid,
type: 4
});
freelancerRef.child("/notifications").push({
timestamp: admin.database.ServerValue.TIMESTAMP,
key: contractid,
type: 4
});
});
我只返回return contractRef...
承诺,也应该返回contractRef中的承诺(freelancerRef,clientRef)?如果是这样,我应该创建一个承诺数组然后return Promise.all(arrayOfProimises);
或者我可以单独返回承诺return freelancerRef.child("/notifications").push({...
答案 0 :(得分:0)
2.4.0 :001 > Date.today.beginning_of_month
=> Sat, 01 Apr 2017
2.4.0 :004 > Date.today.beginning_of_month.days_since(9)
=> Mon, 10 Apr 2017
将创建一个只有在满足所有其他个人承诺时才能履行的承诺。这是你应该从Promise.all([...])
返回的(然后应该由整个函数返回),以确保它在清理之前等待所有工作完成。你不可能单独归还个人承诺。