按钮未插入Pug中的表格行

时间:2018-11-03 11:33:53

标签: node.js pug jade4j

我试图将按钮添加为Pug表中的行元素。 但是按钮没有插入到特定行 以下是哈巴狗代码

table
    tr#headtag
        th DishName
        th Quantity
        th Currently_Done
        th Predicted
        th 
    each order in orders
        tr
            th=order.dish.name
            th=order.numberOfQuantity
            th=order.dish.predictedValue
            th=order.dish.predictedValue
            th=button(class="btn btn-small", type="button") Slett

在浏览器中显示“发生某些错误”

没有按钮代码就可以正常工作。

table
    tr#headtag
        th DishName
        th Quantity
        th Currently_Done
        th Predicted
    each order in orders
        tr
            th=order.dish.name
            th=order.numberOfQuantity
            th=order.dish.predictedValue
            th=order.dish.predictedValue

1 个答案:

答案 0 :(得分:1)

=button之间的,class(可选)之前删除type,然后尝试以下操作:

th
    button(class="btn btn-small" type="button") Slett

来自docs

  

缓冲的代码以=开头。它评估JavaScript表达式   并输出结果。为了安全起见,缓冲的代码是第一个HTML   逃脱了。

因此th=button(class="btn btn-small", type="button") Slett不起作用。