How to show image, not download in nodejs express
2021. 2. 21. 14:22
const attachment = await AttachmentAPI.get_file_by_id(attachment_id);
/* ... */
const filename = attachment.filename;
const extension = filename.split('.').pop().toLowerCase();
/* ... */
res.contentType(`image/${extension}`);
/* ... */
try {
const content = await fs.readFileSync(attachment.path);
res.end(content);
} catch (error) {
// Error Handling
}
Use res.end(), not res.send() OK?
'Codes > Javascript' 카테고리의 다른 글
React Semantic UI vs. Chakra UI (0) | 2021.06.11 |
---|---|
Javascript Nullish coalescing operator (0) | 2020.07.28 |
Chrome Extension을 통한 수강신청 사이트 키 금지 기능 무효화 (0) | 2020.02.22 |
Pub/Sub 계층을 통한 프로그래밍 (0) | 2020.02.11 |
javascript 일반 함수와 화살표 함수 (0) | 2018.07.22 |