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" });