Toggle navigation
Toggle navigation
This project
Loading...
Sign in
곽윤철
/
youtube-comment-seperator
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
곽교린
2022-05-07 19:17:22 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
150a21ea32c3fdef1851f557c7c18e5366cc1b08
150a21ea
1 parent
595e942d
오류수정 : 새로운 페이지를 불러올 때 이전 댓글 목록까지 중복해서 출력했던 오류 수정, 검색한 주소가 텍스트창에 그대로 남아있도록 수정
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletions
CommentLoadingTest.js
CommentLoadingTest.js
View file @
150a21e
...
...
@@ -78,6 +78,9 @@ var app = http.createServer(function(request,response){ // request는 브라우
response
.
end
(
body
);
}
else
if
(
pathname
===
'/search'
){
commentList
.
splice
(
0
);
commentNum
=
0
;
//코멘트 리스트 초기화
videoNum
=
queryData
.
videourl
;
console
.
log
(
videoNum
);
let
npt
=
""
...
...
@@ -98,7 +101,7 @@ var app = http.createServer(function(request,response){ // request는 브라우
<body>
<form action="http://localhost:3000/search" method="get">
<p>
<textarea name="videourl" placeholder="Write your video Url"
value="
${
videoNum
}
">
</textarea>
<textarea name="videourl" placeholder="Write your video Url"
>
${
videoNum
}
</textarea>
</p>
<p>
<input type="submit">
...
...
Please
register
or
login
to post a comment