expressJS / Node app运行错误

时间:2014-01-13 22:03:48

标签: node.js express

我使用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

enter image description here

1 个答案:

答案 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缩略图