Commit f1147608 authored by 陈志良's avatar 陈志良

默认数字转字符串

parent b740bf06
...@@ -1187,7 +1187,7 @@ router.get('/thread/:tid/exportComments', function(req, res, next) { ...@@ -1187,7 +1187,7 @@ router.get('/thread/:tid/exportComments', function(req, res, next) {
if(sub_comment.to){ if(sub_comment.to){
to = sub_comment.to.nickName || '游客'; to = sub_comment.to.nickName || '游客';
} }
var this_row = [nickName + ' 回复 ' + to, time,openId, nickName, content, 0, null,null,null,null]; var this_row = [nickName + ' 回复 ' + to, time,openId, nickName, content, '0', null,null,null,null];
rows.push(this_row); rows.push(this_row);
}; };
} }
......
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