我想在我的角应用程序中使用玉模板引擎。我使用npm install jade
然后我将它包含在我的index.jade中,如下所示
doctype html
html
head
title AngularApp
body(ng-app="AngularApp", ng-init="message='hello world")
h1 {{message}}
script(src="node_modules/angular/angular.js")
script(src="node_modules/jade/jade.js")
script(src="scripts/app.js")
但我的浏览器中没有hello world
输出。那么如何在angularjs中使用jade模板引擎。
我在浏览器中获得以下输出
Index of /
(drwxrwxr-x) css/
(drwxrwxr-x) node_modules/
(drwxrwxr-x) scripts/
(-rw-rw-r--) 257B index.jade
Node.js v4.4.7/ ecstatic server running @ localhost:8080
此外,我在控制台中没有收到任何错误。