Node.js
HTMLやその他のファイルを配信する
サーチ…
構文
- response.sendFile(ファイル名、オプション、関数(エラー){});
指定されたパスでHTMLを配信する
ここではExpressサーバを作成し、奉仕する方法ですindex.html
(空のパスデフォルトでは/
)、およびpage1.html
用/page1
パス。
フォルダ構造
project root
| server.js
|____views
| index.html
| page1.html
server.js
var express = require('express');
var path = require('path');
var app = express();
// deliver index.html if no file is requested
app.get("/", function (request, response) {
response.sendFile(path.join(__dirname, 'views/index.html'));
});
// deliver page1.html if page1 is requested
app.get('/page1', function(request, response) {
response.sendFile(path.join(__dirname, 'views', 'page1.html', function(error) {
if (error) {
// do something in case of error
console.log(err);
response.end(JSON.stringify({error:"page not found"}));
}
});
});
app.listen(8080);
sendFile()
はレスポンスとして静的ファイルをストリームするだけで、変更する機会はありません。 HTMLファイルを提供していて、そのファイルに動的データを含める場合は、Pug、Mustache、EJSなどのテンプレートエンジンを使用する必要があります。
Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow