如何使用 node/express/jade 包含脚本?

How to include scripts with node/express/jade?

我正在使用 Jade 构建一个 MEAN 堆栈应用程序,但我无法让我的任何脚本标签 link 工作。 link 标签工作正常。我已经尝试了绝对和相对 links 以及大约 5 个其他解决方案,这些解决方案是在堆栈溢出问题上发布的(大多数都是几年前的),但其中 none 有效。

下面是我项目中的相关代码:

(header.jade)

    link(href='libraries/normalize-css/normalize.css', rel='stylesheet')
    link(href='https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css', rel='stylesheet')
    link(href='custom.css', rel='stylesheet')
    script(src='https://code.angularjs.org/1.4.7/angular.min.js')
    script(src='/js/app.js')

(我要使用的地方的示例 angular)

extends userBase
block vars
    - var title = 'Login'
block body
    h1.love love love
    div(ng-controller='ChoiceCtrl')
        form(method="post", role="form", style="width:90%; margin: 5px auto;", class="form-horizontal")
            input(type='hidden', name='_csrf', value=csrfToken)
            div.form-group
                label(for="question") Ask your question:
                input(type="text", name="question", required=true, class="form-control", id="question", placeholder='Which team will win the super bowl this year...?')
                br
            ul.list-group
                li.list-group-item(ng-repeat="choice in choices")
                    span {{ 2+2 }}
            div.form-group
                label(for="responses") Choose Response Options:
                .input-group
                    input(type="text", name="response", class="form-control", id="responses", ng-model='choiceBody')
                    span.input-group-btn
                        input(type="submit", class='btn btn-primary', value='Add', ng-click='addChoice()')
            input(type="submit", class='btn btn-primary', value='Create Poll')

此外,在 server.js 文件中,静态文件的路由工作正常,所以我不确定问题出在哪里。

其余代码在github上:https://github.com/gwenf/votenow

我想通了!我忘记为 angular 的 ui-路由器添加一个脚本标签。我将脚本标记放在 angular:

之后
link(href='libraries/normalize-css/normalize.css', rel='stylesheet')
link(href='https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css', rel='stylesheet')
link(href='custom.css', rel='stylesheet')
script(src='libraries/angular/angular.js')
script(src='libraries/angular-ui-router/angular-ui-router.js')
script(src='/js/app.js')

然后我将它包含在我的 app.js 中:

var myApp = angular.module('myApp', ['ui.router']);