agent.add 在 promise.then dialogflow 中不工作
agent.add not working inside promise.then dialogflow
function issuetype(agent) {
//let i = 0;
console.log('inside issuetype');
return admin.database().ref('Support/issuetype').once('value', function(snapshot) {
var data = snapshot.val();
var array = Object.values(data);
console.log('Issues are');
console.log(array);
agent.add(`Select your issue `); //works fine
for(const val of array){
agent.add(new Suggestion(`${val}`));
}
console.log(data);
});
}
function subtype(agent) {
let data;
let value;
let id;
console.log('inside subtype');
let harry = new Promise(function(resolve,reject){
admin.database().ref('Support/issuetype').once('value', function(snapshot) {
value = agent.parameters.sub;
console.log('inside promise');
data = snapshot.val();
console.log('Key'+Object.keys(data));
console.log('Value'+value);
id = Object.keys(data).find(key => data[key] === value);
console.log('Matched id');
console.log(id);
if(id){
resolve(id);strong text
}else{
reject('not resolved');
}
});
});
harry.then(function(res){
console.log('Type of id:'+typeof(res));
console.log('id is:'+res);
agent.add(`Select your sub issue ret`);
admin.database().ref('Support/issuesubtype/'+res).once('value', function(snap) {
var snapdata = snap.val();
var values = Object.values(snapdata);
console.log(typeof(values));
console.log('SubIssues are'); // displayed in console
console.log(values);
agent.add(`Select your sub issue `); // not displayed
return agent.add(`Select your sub issue `); // not displayed
for(const k of values){
agent.add(new Suggestion(`${k}`)); // not displayed
}
});
}).catch(function(rej){
console.log(rej);**strong text**
}).then(function(rej){
console.log('Irrespctive');
});
}
intentMap.set('issuetype', issuetype);
intentMap.set('subtype', subtype);
函数子类型被intentMap调用,
在它里面 harry 函数 returns 一个承诺,一旦承诺得到解决,我就从 firebase 获取数据并想使用 agent.add 显示它
在 console.log 中获得预期输出,但 agent.add 为空白
而 agent.add 在问题类型函数中工作
部分问题在于您混合使用 Promise 和回调,有时 return 使用 Promise,有时则不然。如果您牢记一些准则,这将是最简单的:
- 确保你 return 承诺。
- 确保您对
agent.add()
的调用在 .then()
子句内。
- 如果您正在使用回调函数,在大多数情况下可以将其切换为使用 Promises。
请记住,您不需要将其包装到一个新的 Promise 中,因为如果您不给它一个回调函数,Firebase 会调用您正在做的return一个 Promise。
比如你的线路
admin.database().ref('Support/issuesubtype/'+res).once('value', function(snap) {
最好改写为
return admin.database().ref('Support/issuesubtype/'+res).once('value')
.then( snap => {
这里的要点是您return正在使用 Promise 并且您正在使用 Promise 而不是回调来处理函数。
function issuetype(agent) {
//let i = 0;
console.log('inside issuetype');
return admin.database().ref('Support/issuetype').once('value', function(snapshot) {
var data = snapshot.val();
var array = Object.values(data);
console.log('Issues are');
console.log(array);
agent.add(`Select your issue `); //works fine
for(const val of array){
agent.add(new Suggestion(`${val}`));
}
console.log(data);
});
}
function subtype(agent) {
let data;
let value;
let id;
console.log('inside subtype');
let harry = new Promise(function(resolve,reject){
admin.database().ref('Support/issuetype').once('value', function(snapshot) {
value = agent.parameters.sub;
console.log('inside promise');
data = snapshot.val();
console.log('Key'+Object.keys(data));
console.log('Value'+value);
id = Object.keys(data).find(key => data[key] === value);
console.log('Matched id');
console.log(id);
if(id){
resolve(id);strong text
}else{
reject('not resolved');
}
});
});
harry.then(function(res){
console.log('Type of id:'+typeof(res));
console.log('id is:'+res);
agent.add(`Select your sub issue ret`);
admin.database().ref('Support/issuesubtype/'+res).once('value', function(snap) {
var snapdata = snap.val();
var values = Object.values(snapdata);
console.log(typeof(values));
console.log('SubIssues are'); // displayed in console
console.log(values);
agent.add(`Select your sub issue `); // not displayed
return agent.add(`Select your sub issue `); // not displayed
for(const k of values){
agent.add(new Suggestion(`${k}`)); // not displayed
}
});
}).catch(function(rej){
console.log(rej);**strong text**
}).then(function(rej){
console.log('Irrespctive');
});
}
intentMap.set('issuetype', issuetype);
intentMap.set('subtype', subtype);
函数子类型被intentMap调用, 在它里面 harry 函数 returns 一个承诺,一旦承诺得到解决,我就从 firebase 获取数据并想使用 agent.add 显示它 在 console.log 中获得预期输出,但 agent.add 为空白 而 agent.add 在问题类型函数中工作
部分问题在于您混合使用 Promise 和回调,有时 return 使用 Promise,有时则不然。如果您牢记一些准则,这将是最简单的:
- 确保你 return 承诺。
- 确保您对
agent.add()
的调用在.then()
子句内。 - 如果您正在使用回调函数,在大多数情况下可以将其切换为使用 Promises。
请记住,您不需要将其包装到一个新的 Promise 中,因为如果您不给它一个回调函数,Firebase 会调用您正在做的return一个 Promise。
比如你的线路
admin.database().ref('Support/issuesubtype/'+res).once('value', function(snap) {
最好改写为
return admin.database().ref('Support/issuesubtype/'+res).once('value')
.then( snap => {
这里的要点是您return正在使用 Promise 并且您正在使用 Promise 而不是回调来处理函数。