Toggle navigation
Toggle navigation
This project
Loading...
Sign in
은승우
/
LINEBOT
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
은승우
2019-12-05 20:13:29 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
0abcc4aae838a0117d32829f4c3f37591271cbfc
0abcc4aa
1 parent
80be98f1
Update app.js
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
app.js
app.js
View file @
0abcc4a
...
...
@@ -109,14 +109,15 @@ async function handleEvent(event) {
}
text
.
replace
(
'\n'
,
''
);
if
(
text
.
length
>
20
)
/*
if(text.length>20)
{
text=text.substring(8,20);
}
}*/
console
.
log
(
text
);
var
url
=
"https://www.genie.co.kr/search/searchLyrics?query="
+
encodeURI
(
text
);
console
.
log
(
url
);
request
(
url
,
function
(
error
,
response
,
html
){
var
$
=
cheerio
.
load
(
html
);
const
$bodyList
=
$
(
'#body-content > div.search_lyrics > div.music-list-wrap.type-lyrics > table > tbody > tr'
);
var
songList
=
[];
...
...
Please
register
or
login
to post a comment