|
|
const model = require('../models');
|
|
|
const Cookies = require('cookies');
|
|
|
|
|
|
exports.index = (req, res) => {
|
|
|
const channelType = req.path.substring(1) || 'men';
|
|
|
|
|
|
model.getContent(channelType).then(result => {
|
|
|
const cookies = new Cookies(req, res);
|
|
|
|
|
|
// 设置当前频道
|
|
|
cookies.set('_Channel', channelType);
|
|
|
res.cookie('_Channel', channelType, {
|
|
|
domain: '.yohoblk.com'
|
|
|
});
|
|
|
|
|
|
req.yoho.channel = channelType;
|
|
|
|
|
|
res.display('index', Object.assign({
|
...
|
...
|
|