Toggle navigation
Toggle navigation
This project
Loading...
Sign in
최시원
/
Singer-Composer
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
Mukho
2021-11-26 16:26:51 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
a071ea1869c4c2017932c67202c14ac987d08d8f
a071ea18
1 parent
31570ce8
Add text
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletions
readme.md
router/board/index.js
readme.md
View file @
a071ea1
...
...
@@ -70,7 +70,7 @@ create table comment(
>UPDATE board SET idx = @COUNT:=@COUNT+1;
---
### 최종 수정: 2021-11-26
04:42
<br>
### 최종 수정: 2021-11-26
16:26
<br>
### 수정 내용:
0.
채팅 중 서버 재시작시 기존 참여자들 리셋시키기 이슈
1.
채팅 구현
...
...
router/board/index.js
View file @
a071ea1
...
...
@@ -147,6 +147,7 @@ router.post('/read/commentwrite', function(req,res,next){
board
.
query
(
sql
,
datas
,
function
(
err
,
row
){
if
(
err
)
console
.
error
(
"err : "
+
err
);
})
console
.
log
(
logString
+
req
.
user
.
ID
+
'('
+
nickname
+
') 유저가 '
+
idx
+
'번 게시물에 댓글을 작성했습니다.('
+
ip
+
')'
)
res
.
redirect
(
'/board/read/'
+
idx
);
})
...
...
Please
register
or
login
to post a comment