강의

멘토링

로드맵

Inflearn Community Q&A

superfly90612's profile image
superfly90612

asked

Node and React series that you can learn by following - Creating a movie site

Movie App Series #8 Bringing in Movie Casts (Learning React Node by Following)

cast.profile.path가 null일때

Resolved

Written on

·

214

0

cast.profile.path가 null일때 다음 이미지와 같이 레이아웃이 깨져서 이거를 로컬에 있는 이미지로 대체하려는데 이때 express.static을 써주면 되는 것일까요?

nodejs웹앱reactexpressmongodb

Answer 3

1

John Ahn님의 프로필 이미지
John Ahn
Instructor

만약  이미지 파일을  uploads라는 폴더에다 넣는다면 

app.use('/uploads', express.static('uploads'));

이런식으로 하면 됩니다 

그리고 가져오실떄는  localhost:5000/uploads/파일이름 이런식으로 해주시면 됩니다 ~  

0

그런데 제가 AWS EC2에 서버올려서 이미지 파일을 가져오려고 하면

왜 서버단의 이미지를 가져올 수 없을까요?

http:// 에서 자동으로 https:// 로 요청되면서 가져올 수가 없네요..

url에 직접 http://ip:5000/uplpads/d.jpg 이런식으로 치면 이미지 파일이 열리는데 이상하네요..

0

superfly90612님의 프로필 이미지
superfly90612
Questioner

넵 감사합니다!

superfly90612's profile image
superfly90612

asked

Ask a question