1

如何在故事结束时或用户想要重新启动流程时重置或清除上下文?我已经有自己的重置功能了……不是很有效!你能解释一下我必须做什么吗?非常感谢

 reset({sessionId,context}) {
    return new Promise(function(resolve, reject) {
        context = null;
        return resolve(context);
    });
 }

对于会议,我这样做:

var findOrCreateSession = (fbid) => {
    let sessionId;
    Object.keys(sessions).forEach(k => {
        if (sessions[k].fbid === fbid) {
            sessionId = k;
        }
    });
    if (!sessionId) {
        console.log("je cree une session car yen a pas");
        sessionId = new Date().toISOString();
        sessions[sessionId] = {
            fbid: fbid,
            context: {}
        };
    }
    return sessionId;
};

我怎样才能在故事结束时终止会话和/或终止上下文并重置流程!

4

1 回答 1

0

在 webhook 访问 Wit.ai 控制器之前,您可能会删除旧会话并创建一个新会话。

有关示例,请参见下面的代码:

Webhook POST 处理程序

// Conversation History
let sessionId = WitRequest.getSession(senderId);

if (message.text.toLowerCase() == "break") {
    // New Conversation History
    // Delete the old session
    WitRequest.deleteSession(sessionId);

    // Get new Session Id
    sessionId = WitRequest.getSession(senderId);

}

let sessionData = WitRequest.getSessionData(sessionId);

wit.runActions(
    sessionId,
    message.text,
    sessionData
)
.then((context) => {
    sessionData = context;
})
.catch((error) => {
    console.log("Error: " + error);
});

WitRequest 类

static getSession(senderId) {

    let sessionId = null;

    for (let currentSessionId in sessions) {
        if (sessions.hasOwnProperty(currentSessionId)) {
            if (sessions[currentSessionId].senderId == senderId) {
                sessionId = currentSessionId
            }
        }
    }

    if (!sessionId) {
        sessionId = new Date().toISOString();
        sessions[sessionId] = {
            senderId: senderId,
            context: {}
        }
    }

    return sessionId;
}

static getSessionData(sessionId) {

    return sessions[sessionId].context;

}

static deleteSession(sessionId) {

    delete sessions[sessionId];

}

static clearSession(session) {
    session.context = {};
}
于 2017-03-20T03:32:21.477 回答