logo
  • 教程列表
  • SO官方文檔
  • 處理靜態檔案
    • 目錄虛擬路徑字首示例的絕對路徑
    • 基本例子
    • 多個目錄示例
    • 虛擬路徑字首示例
    • 靜態檔案目錄示例的絕對路徑
    • 基本靜態檔案和 favicon 服務示例
  1. StackOverflow 文件
  2. express 教程
  3. 處理靜態檔案
  4. 靜態檔案目錄示例的絕對路徑

靜態檔案目錄示例的絕對路徑

Created: November-22, 2018

// Set up Express
var express = require('express');
var app = express();    

// Serve files from the absolute path of the directory
app.use(express.static(__dirname + '/public'));

// Start Express server
app.listen(3030);
  • 基本靜態檔案和 favicon 服務示例
  • 虛擬路徑字首示例

Copyright © 2018. All right reserved

tastones.com 备案号:鲁ICP备18045372号-1

  • 關於本站
  • 免責聲明