我试图将按钮添加为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
答案 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
不起作用。