載入靜態檔案(image,css,js)
執行
//增加靜態檔案的路徑
app.use(express.static('public'));
app.get('/',function(req,res){
res.send('<html><head></head><body><image src="/images/123.jpg"></body></html>');
})Last updated
Was this helpful?
//增加靜態檔案的路徑
app.use(express.static('public'));
app.get('/',function(req,res){
res.send('<html><head></head><body><image src="/images/123.jpg"></body></html>');
})Last updated
Was this helpful?
Was this helpful?