Toggle navigation
Toggle navigation
This project
Loading...
Sign in
홍용민
/
BusTime
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
이의준
2021-06-10 01:27:57 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
1d267be89ec7cb3d51a281c8f1283c31258ab77c
1d267be8
1 parent
93293899
ejs파일 오류 수정 및 테스트용 서버 파일 업로드
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
46 additions
and
18 deletions
EjsTestserver.js
views/index.ejs
views/timetable_ejstest.ejs → views/timetable.ejs
EjsTestserver.js
0 → 100644
View file @
1d267be
var
express
=
require
(
'express'
);
var
app
=
express
();
var
http
=
require
(
'http'
);
app
.
set
(
'views'
,
__dirname
+
'/views'
);
app
.
set
(
'view engine'
,
'ejs'
);
app
.
get
(
'/'
,
function
(
req
,
res
){
res
.
render
(
'index'
);
})
app
.
get
(
'/timetable'
,
function
(
req
,
res
)
{
res
.
render
(
'timetable'
,
{
busNum
:
9999
,
ETD_min_H
:
'1'
,
ETD_min_m
:
'30'
,
ETD_max_H
:
'1'
,
ETD_max_m
:
'45'
,
remainTime
:
'00시간 00분 이상'
});
});
// app.get('/timetable', function(req, res){
// res.send('timetable');
// });
http
.
createServer
(
app
).
listen
(
23023
,
function
(){
console
.
log
(
'23023'
);
});
\ No newline at end of file
views/index.ejs
View file @
1d267be
...
...
@@ -12,33 +12,32 @@
<h1><p
style=
"text-align:center;"
>
BTT
</p></h1>
<br>
<link
rel=
'stylesheet'
type=
'text/css'
href=
'/css/style.css'
/>
<h2>
사색의 광장 Bus Time Table 조회 서비스에 오신 것을 환영합니다.
</h2>
<p>
이곳에는 사색의 광장에서 출발하는 모든 버스의 정보가 있습니다.
</p>
<h2
style=
"padding:0 0 0 20px;"
>
사색의 광장 Bus Time Table 조회 서비스에 오신 것을 환영합니다.
</h2>
<p
style=
"padding:0 0 0 20px;"
>
이곳에는 사색의 광장에서 출발하는 모든 버스의 정보가 있습니다.
</p>
<br><br>
<h2
>
버스별 시간표 조회
</h2>
<h2
style=
"padding:0 0 0 20px;"
>
버스별 시간표 조회 (click the bus number!)
</h2>
<div
style=
"padding:0 0 0 20px;"
>
<script>
<div
style=
"padding:0 0 0 20px;"
>
<
% var date = new Date(); %>
<
% var yyyy = date.getFullYear(); %>
<
% var mm1 = date.getMonth() + 1; %>
<
% var dd = date.getDate(); %>
<
% var hh = date.getHours(); %>
<
% var mm2 = date.getMinutes(); %>
<
% var printDateNotion = yyyy+"년 "+mm1+"월 "+dd+"일 오늘 운행하는 버스들 "; %>
<
% var printDateNotion2 = "( "+hh+"시 "+mm2+"분 기준 )"; %>
<%
document
.
write
(
yyyy
+
"년 "
+
mm1
+
"월 "
+
dd
+
"일 오늘 운행하는 버스들 "
);
%>
<%
document
.
write
(
"( "
+
hh
+
"시 "
+
mm2
+
"분 기준 )"
);
%>
</
script>
</
div>
<
%
= printDateNotion
%>
<
%
= printDateNotion2
%>
</div>
<ul>
<li><a
href=
"http://localhost:23023/timetable?busNum=5100"
>
5100
</a></li>
<li><a
href=
"http://localhost:23023/timetable?busNum=M5107"
>
M5107
</a></li>
<li><a
href=
"http://localhost:23023/timetable?busNum=9"
>
9
</a></li>
<li><a
href=
"http://localhost:23023/timetable?busNum=1112"
>
1112
</a></li>
<li><a
href=
"http://localhost:23023/timetable?busNum=5100"
>
5100
</a></li>
<li><a
href=
"http://localhost:23023/timetable?busNum=7000"
>
7000
</a></li>
<li>
etc
</li>
</ul>
<br>
<p>
설명
</p>
<p>
ejs파일임
</p>
</body>
</html>
\ No newline at end of file
...
...
views/timetable
_ejstest
.ejs
→
views/timetable.ejs
View file @
1d267be
...
...
@@ -31,17 +31,17 @@
버스의 평균 배차시간을 기준으로 최소 출발시간과 최대 출발시간을 제공합니다.
</div>
</p>
<div
style=
"padding:0 0 0 20px;"
>
<script>
<
% var date = new Date(); %>
<
% var yyyy = date.getFullYear(); %>
<
% var mm1 = date.getMonth() + 1; %>
<
% var dd = date.getDate(); %>
<
% var hh = date.getHours(); %>
<
% var mm2 = date.getMinutes(); %>
<%
document
.
write
(
yyyy
+
"년 "
+
mm1
+
"월 "
+
dd
+
"일 "
);
%>
<%
document
.
write
(
hh
+
"시 "
+
mm2
+
"분 기준"
);
%>
</script>
<
% var printDateNotion = yyyy+"년 "+mm1+"월 "+dd+"일 "; %>
<
% var printDateNotion2 = hh+"시 "+mm2+"분 기준"; %>
<
%= printDateNotion %>
<
%= printDateNotion2 %>
</div>
</body>
</html>
\ No newline at end of file
...
...
Please
register
or
login
to post a comment