在这种情况下,实际会话简单只有一个函数包含所有值,但是每次流程会话时函数都会更新。
我想创建一个函数或其他表单,以便能够捕获当前数据上的所有数据。
在具有意图,背景,实体等的情况下
conversation.message(payload, function(err, data) {
if (err) {
return res.status(err.code || 500).json(err);
}
return res.json(updateMessage(payload, data));
});
});
updateMessage参数中的数据具有我所需要的全部内容,但如果我创建其他函数并尝试获取此值,则无效。
在我使用这些值并使用app.js打开一些REST Web服务的情况下。 我试试看:
function login (req, res) {
numberOrigin = null;
sessionid = null;
var dataLogin = {
data: { "userName":"xxxxx","password":"xxxxx","platform":"MyPlatform" },
headers: { "Content-Type": "application/json" }
};
client.registerMethod("postMethod", "xxxxxxxxxxxxxxx/services/login", "POST");
client.methods.postMethod(dataLogin, function (data, response) {
if(Buffer.isBuffer(data)){
data = data.toString('utf8');
console.log(data);
var re = /(sessionID: )([^,}]*)/g;
var match = re.exec(data);
var sessionid = match[2]
console.log(sessionid);
}
});
}
function openRequest(data, sessionid, numberOrigin ){
//console.log(data); dont show the values.. show the data response of login
var dataRequest = {
data: {"sessionID": sessionid,
"synchronize":false,
"sourceRequest":{
"numberOrigin":numberOrigin,
"description": JSON.stringify(data.context.email) } },
headers: { "Content-Type": "application/json" }
};
numberOrigin +=1;
client.post("xxxxxxxxxxxxxxxxxx/services/request/create", dataRequest, function (data, response) {
if(Buffer.isBuffer(data)){
data = data.toString('utf8');
console.log(data);
}
});
}
function updateMessage(res, input, data, numberOrigin) {
var email = data.context.email; // this recognize but this function is responsible for other thing
if (email === 'xxxxxxxxxxxx@test.com') {
console.log(data);
login(data);
openRequest(data, sessionid, numberOrigin)
}
}
如果我只想get
app.js
我的ajax
值在REST中使用。我用 selectInput("selectSectorAgrupado","Sector agrupado",
c("Cylinders" = "cyl",
"Transmission" = "am",
"Gears" = "gear"),selected=NULL,multiple = FALSE)
获得了它,但是客户端(index.html)上的所有内容都让我显示了我的凭据,因此我决定在REST中为安全性我的代码执行此操作。
如果有某种形式来解决这个问题,请告诉我。
如果有其他形式,我会很高兴知道。
谢谢你。
答案 0 :(得分:3)
问题可能是您需要写入响应对象res
..在updateMessage函数中传递响应。为了将数据发送回浏览器,您需要写入响应。我有一个演示应用程序调用天气频道来获取基于意图的天气,类似于您尝试使用登录功能。请看一下这段代码
https://github.com/doconnor78/conversation-simple-weather/blob/master/app.js#L130
您需要将原始res(响应)对象传递到相应的函数中,然后在从第三方服务获取后将数据写入响应(res)。