为什么我无法通过节点渲染帕格变量

时间:2019-06-16 00:34:18

标签: pug

我想问一个关于哈巴狗的简单问题:

html  
    head
        title This is my first Pug file
    body
        header
            p= paragaph
        section
            p gdghdhgdhdhdh
        footer
            cool footer with lots of copyrights.
route.get('/Artists/test',(req,res)=> {
    res.render('test.pug', {paragraph: 'Hi there'});
})

我不知道为什么“ p”只是没有显示在浏览器中,但是其余元素都还可以

对这里发生的事情感到困惑。

1 个答案:

答案 0 :(得分:1)

仔细查看您如何调用模板:

res.render('test.pug', {paragraph: 'Hi there'});
                        ^^^^^^^^^

然后仔细查看您如何调用变量:

p= paragaph
   ^^^^^^^^

paragaphparagraph不匹配,并且pug不会呈现空的div。