gpt4 book ai didi

javascript - 使用node.js和express.js的图片显示错误

转载 作者:行者123 更新时间:2023-11-30 09:48:34 25 4
gpt4 key购买 nike

一旦我打开“localhost:3000”,图像就会下载到我的笔记本电脑上,而不是显示在网页上,有人可以帮我吗?

var express= require('express');
var fs = require('fs');
var app= express();

var imgpath= 'C:\Users\Rohit\Downloads\images.jpg';

app.get('/',function(req,res){
res.send(fs.readFileSync(imgpath));
});

app.listen(3000);
console.log('listening');

最佳答案

你必须设置标题。

app.get('/',function(req,res){
res.set('Content-Type', 'image/jpg');//Added line
res.send(fs.readFileSync(imgpath));
});

关于javascript - 使用node.js和express.js的图片显示错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37670105/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com