如何在angularjs

时间:2016-07-15 10:31:15

标签: angularjs npm pug

我想在我的角应用程序中使用玉模板引擎。我使用npm install jade

在我的angular文件夹中安装了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

此外,我在控制台中没有收到任何错误。

0 个答案:

没有答案