Toggle navigation
Toggle navigation
This project
Loading...
Sign in
김서연
/
Corona_Vaccination_Medical_Institution
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
3
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
김서연
2021-05-22 15:35:21 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
3885fe4665c85e2751e53b47c5b4c0717c846e44
3885fe46
1 parent
6fe6e300
add
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletions
app.js
app.js
View file @
3885fe4
...
...
@@ -37,7 +37,7 @@ app.post('/',function(req,res,next){
// console.log(searchList);
//result라는 변수에 담아 결과 보내기
res
.
render
(
'main'
,
{
result
:
searchList
,
map
:
map
});
res
.
render
(
'main'
,
{
result
:
searchList
});
})
})
...
...
@@ -51,3 +51,6 @@ app.get('/',function(req,res){
res
.
render
(
'main'
);
})
app
.
get
(
'/map'
,
function
(
req
,
res
){
res
.
resnder
(
'./map/map.html'
);
})
...
...
Please
register
or
login
to post a comment