我使用expressJs,今天我遇到了错误。我重新安装node.js和expressJs但我的问题没有解决。当我使用并运行自动生成快递应用程序或运行我的其他应用程序时我得到这样的错误。
localserver错误
500 Error: C:\express-app\test\test\views\layout.jade:1<br/> > 1| doctype 5 <br/> 2| html <br/> 3| head <br/> 4| title= title <br/><br/>`doctype 5` is deprecated, you must now use `doctype html`
screenShots CMD
答案 0 :(得分:4)
错误消息说明如何解决它:
`doctype 5` is deprecated, you must now use `doctype html`
只需在5
开头将html
更改为_layout.jade
:
doctype html
html
head
title= title
# ...
这是使用release of jade@1.0.0
进行的一些更改之一:
- 删除
的5
doctype(@ForbesLindesay)html
缩略图