Commit 2923211e authored by 陈家荣's avatar 陈家荣

aa

parent 2d647f6d
...@@ -134,12 +134,13 @@ router.get('/thread/:tid/get', function(req, res, next) { ...@@ -134,12 +134,13 @@ router.get('/thread/:tid/get', function(req, res, next) {
} }
}, },
function(thread,callback) { function(datas,callback) {
forumUserService.getUserByUid(uid,function(err, results) { forumUserService.getUserByUid(uid,function(err, results) {
if (err) { if (err) {
callback(err, null); callback(err, null);
} else { } else {
callback(null, results); datas.push(results)
callback(null, datas);
} }
}); });
} }
......
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