Toggle navigation
Toggle navigation
This project
Loading...
Sign in
조민지
/
2018_2_project
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
조민지
2018-12-09 21:47:30 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
5d57affe0e064092c1ca7e688dce02364f690ad5
5d57affe
1 parent
625e6e58
loop revised
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
8 deletions
views/index.ejs
views/index.ejs
View file @
5d57aff
...
...
@@ -39,6 +39,15 @@
</div>
</div>
<script
src=
"/socket.io/socket.io.js"
></script>
<script>
var
socket
=
io
.
connect
(
'/'
);
socket
.
emit
(
"connection"
);
socket
.
on
(
"weatherInfo_minutely_send_to_cliend"
,(
info
)
=>
{
//서버에서 client에게 메세지 전송
console
.
log
(
info
);
});
</script>
<!-- 첫번째 그래프 -->
<script
type=
"text/javascript"
>
Highcharts
.
chart
(
"container1"
,
{
...
...
@@ -52,7 +61,7 @@
var
series
=
this
.
series
[
0
];
setInterval
(
function
()
{
var
x
=
new
Date
().
getTime
(),
// 현재 시간
y
=
0.7
;
//여기에 새로 넣을 값
y
=
0
;
//여기에 새로 넣을 값
series
.
addPoint
([
x
,
y
],
true
,
true
);
},
60000
);
//1000=1초 -> 1분=60000
}
...
...
@@ -130,7 +139,7 @@
x
:
time
+
i
*
60000
,
y
:
temp
})
j
++
;
i
++
;
}
<%
})
%>
...
...
@@ -154,7 +163,7 @@
var
series
=
this
.
series
[
0
];
setInterval
(
function
()
{
var
x
=
new
Date
().
getTime
(),
// 현재 시간
y
=
Math
.
random
()
;
//
y
=
0
;
//
series
.
addPoint
([
x
,
y
],
true
,
true
);
},
60000
);
//1000=1초
}
...
...
@@ -232,7 +241,7 @@
x
:
time
+
i
*
60000
,
y
:
temp
})
j
++
;
i
++
;
}
<%
})
%>
...
...
@@ -256,7 +265,7 @@
var
series
=
this
.
series
[
0
];
setInterval
(
function
()
{
var
x
=
new
Date
().
getTime
(),
// 현재 시간
y
=
Math
.
random
()
;
//
y
=
0
;
//
series
.
addPoint
([
x
,
y
],
true
,
true
);
},
60000
);
//1000=1초
}
...
...
@@ -334,7 +343,7 @@
x
:
time
+
i
*
60000
,
y
:
temp
})
j
++
;
i
++
;
}
<%
})
%>
...
...
@@ -358,7 +367,7 @@
var
series
=
this
.
series
[
0
];
setInterval
(
function
()
{
var
x
=
new
Date
().
getTime
(),
// 현재 시간
y
=
Math
.
random
()
;
//
y
=
0
;
//
series
.
addPoint
([
x
,
y
],
true
,
true
);
},
60000
);
//1000=1초
}
...
...
@@ -436,7 +445,7 @@
x
:
time
+
i
*
60000
,
y
:
temp
})
j
++
;
i
++
;
}
<%
})
%>
...
...
Please
register
or
login
to post a comment