Toggle navigation
Toggle navigation
This project
Loading...
Sign in
임연수
/
FaceDetection
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
2
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
임연수
2018-12-14 04:18:38 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
3cf4d542945e8a6e24cca97ef1ebf230323a0193
3cf4d542
1 parent
e19f4019
add mypic.jpg for rendering result page
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
0 deletions
app.js
app.js
View file @
3cf4d54
...
...
@@ -21,6 +21,7 @@ var storage = multer.diskStorage({ //이 객체의 프로퍼티는 2개갖고
},
filename
:
function
(
req
,
file
,
cb
)
{
cb
(
null
,
file
.
originalname
);
cb
(
null
,
'mypic.jpg'
);
}
});
var
upload
=
multer
({
storage
:
storage
});
...
...
Please
register
or
login
to post a comment