Commit b33fa754 authored by 陈家荣's avatar 陈家荣

11

parent 5405131b
...@@ -596,6 +596,8 @@ router.post('/thread/:tid/comment/:cid/delete', function(req, res, next) { ...@@ -596,6 +596,8 @@ router.post('/thread/:tid/comment/:cid/delete', function(req, res, next) {
//评论列表 //评论列表
router.get('/thread/:tid/comment/list', function(req, res, next) { router.get('/thread/:tid/comment/list', function(req, res, next) {
var tid=req.params.tid || null; var tid=req.params.tid || null;
var pageNo = req.query.pageNo || 1; var pageNo = req.query.pageNo || 1;
var pageSize = req.query.pageSize || 10; var pageSize = req.query.pageSize || 10;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment