comment.js
1.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/**
* comment controller
* @author 陈轩 <xuan.chen@yoho.cn>
*/
'use strict';
const cookie = global.yoho.cookie;
const logger = global.yoho.logger;
const commentModel = require('../models/comment');
const _ = require('lodash');
// comment page
exports.index = (req, res, next) => {
let uid = cookie.getUid(req);
let isComment = req.query.isComment;
let page = req.query.page || 1;
// 转string值为bool值
isComment = isComment === 'Y';
commentModel.getCommentList(uid, isComment, page /* , limit=10*/)
.then(data => {
let localData = _.merge(data, {
module: 'home',
page: 'comment'
});
res.render('comment', localData);
})
.catch(next);
};
exports.saveComment = (req, res, next) => {
// only ajax
if (!req.xhr) {
return;
}
// get post args
let data = {
uid: cookie.getUid(req),
productSkn: req.body.productSkn,
productId: req.body.productId,
content: req.body.content,
goodsId: req.body.goodsId,
orderId: req.body.orderId,
erpSkuId: req.body.erpSkuId
};
commentModel.saveShareOrder(data)
.then(result => {
res.json(result);
})
.catch(error => {
logger.error(`home--comment: ${error}`);
});
};