无法使用JADE模板添加输入框和文本

时间:2014-07-16 11:53:41

标签: node.js angularjs pug

我正在尝试使用jade模板添加input checkbox object.text。但我无法补充这一点。我只是简单的文本而不是输入元素。如何解决这个问题:

doctype 5
html(lang="en", ng-app)
    head
        title hellow there
        link(rel='stylesheet', href='styles/style.css')
    body
        h1 Jade - node template engine
        #container(ng-controller="todoController")
            span {{rest}}
            ul
                li(ng-repeat='todo in todos') input(type='checkbox') {{todo.text}}


script(src='js/lib/angular/angular.js')
script(src='js/lib/underscore/underscore-min.js')
script(src='js/app.js')

我得到的输出是:

input(type='checkbox') Good Morning //no input box displays
input(type='checkbox') Good after Noon //no input box displays

任何人发现我错了,我在这做什么?

1 个答案:

答案 0 :(得分:1)

修改

目前尚不清楚,但现在我认为你要做这样的事情:

li(ng-repeat='todo in todos')
  input(type='checkbox', name="p", id="p")label(for="p")|pip

来自http://fiddlesalad.com/jade/

enter image description here