示例#1
0
文件: db.js 项目: epochtalk/core
 .then(function(dbThread) {
   boardId = dbThread.board_id;
   threadTitle = dbThread.title;
   thread = dbThread;
   return boardsDb.incPostCount(boardId);
 })
示例#2
0
文件: db.js 项目: epochtalk/core
 .then(function(user) {
   postUsername = user.username;
   return threadsDb.incPostCount(post.thread_id);
 })