English 中文(简体)
node.js + jade + ejade + Express : 如果路径匹配, 我如何创建导航, 以设置活动类
原标题:node.js + jade + express: How can I create a navigation that will set class active if the path matches

我提出了以下代码,但问题是,每个菜单项的锁定标记将会重复。有更好的方法可以这样做吗?

                ul.nav
                    - if(menu="Home") 
                        li.active
                            a(href="#") Dashboard
                    else
                        li
                            a(href="#") Dashboard
                    li 
                        a(href="#") About
                    li 
                        a(href="#") Contact
最佳回答

这少了一点重复。

ul.nav
  each name in ["Dashboard", "About", "Contact"]
    if (menu=="Home")
      li.active
        a(href="#")= name
    else
      li
        a(href="#")= name

添加 active class 类也许最好用javascript来完成,或者也许您可以用直线 CSS a:active 选择器来获取您需要的演示文稿 。

问题回答

在另一个 < a href=>"中发现了这个 “https://stackoverflow.com/ questions/9488029/how-does-one-add-a-mential- in-in-jade” > 类似 的问题:

在每个"li"都用双年制

ul
    li(class=(title ===  Home  ?  active  :   ))
        a(href= # ) Home
    li(class=(title ===  Dashboard  ?  active  :   ))
        a(href= # ) Dashboard

您可以设置您的路径以通过“菜单”值, 而不是使用“标题”, 如果您想要 :

exports.index = function(req, res) {
    res.render( index , {title:  Home , menu:  Home });
}

在此选择一个比 Peter 溶液更灵活的锁定文本和 href

nav
  // suppose title local denotes the active nav item
  - var nav = {}; nav[title] =  active 
  ul
    // pass title to li class via nav object
    li(class= #{nav.Home} )
      // different href and anchor text
      a(href= / ) Home
    li(class= #{nav.About} )
      a(href= /about ) About
    li(class= #{nav.Contact} )
      a(href= /contact ) Contact

告诫是,那些不活跃的 li 将有一个未定义的 < /code> 类,在大多数情况下无损。

您可以通过数据中的页面Name。

each menu in ["Home", "Dashboard", "Contact", "About"]
    if (menu == pageName)
      li.active
        a(href="/#{menu}")= menu
    else
      li
        a(href="/#{menu}")= menu

您可以调用

res.render("index", { pageName:  Home })

res.render("index", { pageName:  Dashboard })

res.render("index", { pageName:  Contact })

我觉得最好把身体类 设置到现在的路径上 这样比较好

body(class = currentPath)

因此,您可以使用选择器,例如

body.home .nav li.home, body.dashboard .nav li.dashboard {
  Style when current path
}

这些选择器可以缩到最小的 身体. path. path, 但它可能不够隔离 。

这在客户端逻辑中也会有用, 因为可以使用此选择器来决定 JavaScript 的路径, 比如

$("body.home").doSomethingSpecificToHome

这样你的模板的逻辑就少得多了

现在,我不认为有办法根据 URL 自动设置“ 当前 Path ” 。 基于 URL 的助手: 路径可能有用 。

非常灵活,不重复:

ul
  each menuitem in [{title: Home ,url: / },{title: About ,url: /about },{title: Contact ,url: /contact }]
    if (menuitem.title == title)
      li.active
        a.active(href=menuitem.url) #{menuitem.title}
    else
      li
        a(href=menuitem.url) #{menuitem.title}

您需要设置当前 标题 的页面 。

类似@netAction s 文章, 但取决于 URL 而非标题 。

each menuitem in [{title: Home ,url: / },{title: About ,url: /about },{title: Contact ,url: /contact }]
    if (path == menuitem.url)
        li.active
            a.active(href=menuitem.url) #{menuitem.title}
    else
        li
            a(href=menuitem.url) #{menuitem.title}

app.use(function(req, res, next) {
    res.locals = {
        isAuthenticated: req.isAuthenticated(),
        path :req.path
    }

    next(); // make sure we go to the next routes and don t stop here
});




相关问题
How to make Sequelize use singular table names

I have an model called User but Sequelize looks for the table USERS whenever I am trying to save in the DB. Does anyone know how to set Sequelize to use singular table names? Thanks.

What is Node.js? [closed]

I don t fully get what Node.js is all about. Maybe it s because I am mainly a web based business application developer. What is it and what is the use of it? My understanding so far is that: The ...

Clientside going serverside with node.js

I`ve been looking for a serverside language for some time, and python got my attention somewhat. But as I already know and love javascript, I now want learn to code on the server with js and node.js. ...

Can I use jQuery with Node.js?

Is it possible to use jQuery selectors/DOM manipulation on the server-side using Node.js?

How do I escape a string for a shell command in node?

In nodejs, the only way to execute external commands is via sys.exec(cmd). I d like to call an external command and give it data via stdin. In nodejs there does yet not appear to be a way to open a ...

热门标签