Toggle navigation
Toggle navigation
This project
Loading...
Sign in
이나경
/
time_table
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-06-03 16:03:10 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
b3e4dca39feaa89acde0d998a8a731bc93b801c6
b3e4dca3
1 parent
4fa15bbb
Organize crawling data
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
2 deletions
컴퓨터공학과.js
컴퓨터공학과.js
View file @
b3e4dca
...
...
@@ -15,8 +15,20 @@ var options = {
'p_term'
:
'10'
,
'initYn'
:
'Y'
}
};
request
(
options
,
function
(
error
,
response
)
{
if
(
error
)
throw
new
Error
(
error
);
console
.
log
(
response
.
body
);
});
var
jason
=
response
.
body
var
json
=
JSON
.
parse
(
jason
)
const
data
=
{}
for
(
var
i
in
json
[
"rows"
])
{
console
.
log
(
json
[
"rows"
][
i
])
}
console
.
log
(
json
[
"rows"
][
0
][
"subjt_name"
])
});
\ No newline at end of file
...
...
Please
register
or
login
to post a comment