jade static anchor link with dynamic link data from server side

不想你离开。 提交于 2019-12-25 14:06:30

问题


Does jade is able to do following, combine static html list with dynamic anchor list from server side.

ul
        li
            a(href='/') Home
if data.links
    each link, i in data.links
        li
            a(href='' + link.url)= link.title

回答1:


Yes. You're just using the wrong indentation and format:

ul
    li
        a(href="/") Home
    if data.links
        each link, i in data.links
            li
                a(href=link.url) #{link.title}


来源:https://stackoverflow.com/questions/33961655/jade-static-anchor-link-with-dynamic-link-data-from-server-side

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!