Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
XHTML5 を書きたいと思っています。への応答のデフォルトの MIME タイプを変更するにはどうすればよいapplication/xhtml+xmlですか?
application/xhtml+xml
Expressを使用している場合は、次のように、テンプレートエンジンを呼び出す前にヘッダーを設定できます。
res.header('Content-Type', 'application/xhtml+xml'); res.render('index.jade', { title: "Welcome" });