0

我想写 XHTML5。如何将我的回复中的默认 mime 类型更改为application/xhtml+xml

4

1 回答 1

0

如果您使用 Express,则可以在调用模板引擎之前设置标头,例如:

res.header('Content-Type', 'application/xhtml+xml'); 
res.render('index.jade', {
    title: "Welcome"
});
于 2011-05-07T13:17:29.427 回答