set-pageinfo.js 616 Bytes
/**
 * 设置页面的module,page默认值
 * @author: 赵彪<bill.zhao@yoho.cn>
 * @date: 2016/6/22
 */

'use strict';

module.exports = () => {
    return (req, res, next) => {
        if (!req.xhr) {
            const arr = req.path.substring(1).split('/');

            Object.assign(res.locals, {
                module: arr[0],
                page: arr[1],
                miniPath: `//m.yohobuy.com/api/wechat/miniapp.jpg?miniapp_type=0&param={"union_type":${req.query.union_type || req.cookies.unionTypeYas || ''}}&miniQrType=0` // eslint-disable-line
            });
        }

        next();
    };
};