(Angular + Jade + UI Bootstrap)下拉菜单没有附加样式

时间:2014-02-21 09:19:23

标签: angularjs pug angular-ui-bootstrap

我正在尝试在角度上实现下拉菜单。到目前为止,我得到了要打印的项目列表,但它看起来如下图所示:

enter image description here

简单地说,它没有应用任何风格。这是我的代码的样子。

index.jade

!!!
html
    head
    script(src='https://ajax.googleapis.com/ajax/libs/angularjs/1.0.6/angular.min.js')
    script(src='js/lib/uibootstrap/ui-bootstrap-tpls-0.6.0.min.js')
    ...(skip)

body(ng-app="appName")
    div(ng-controller="controllerName")
        div(class="parent")
            span(class="dropdown")
                span(class="dropdown-toggle") EBOOKS
                ul(class='dropdown-menu')
                    li(ng-repeat='item in ebook')
                        a(href="{{item.url}}", target="blank") {{item.title}}

page.js

angular.module('page', ['ui.bootstrap']);
function controllerName($scope) {
    $scope.ebook = [{
        title: 'Link to Google',
        url: 'http://www.google.com/'
    },
    {   title: 'Link to Bing',
        url: 'http://www.bing.com/'
    },
    {
        title: 'A long title testing is being done here lalalala',
        url: 'http://duckduckgo.com'
    }];
}                

我花了很多时间在这上面,但似乎无法取得任何突破。请帮忙。

1 个答案:

答案 0 :(得分:1)

您的jade不包含ui-bootstrap CSS文件。在ui-bootstrap页面的这个plunker example中,您将看到他们使用来自CDN的CSS:

< link href =“// netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css"rel =”stylesheet“>

我怀疑这可能会翻译为

link(href='//netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css', rel='stylesheet')

in jade