logout.js 468 Bytes
/**
 * 登出业务适配
 * @author h1bomb
 */

/**
 * 登出
 * @param  {Object} data 通过接口获取到的数据
 * @param  {Object} req  请求对象
 * @param  {Object} res  响应对象
 * @return {void}      没有返回
 */
exports.get = function(data, req, res) {
    //在适配的时候,不再走到下一个中间件
    res.adaptersStop = true;

    //删除用户的会话
    delete req.session.user;

    //跳转登录页
    res.redirect('/');
}