Pug 中的 table 行中没有插入按钮
Button is not getting inserted inside table row in Pug
我正在尝试将按钮添加为 Pug table 中的行元素。
但是按钮没有被插入到特定的行
以下是哈巴狗代码
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
在浏览器中获取 'Something failed error'
没有按钮代码工作正常。
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
删除 button
之前的 =
和 class
和 type
之间的 ,
(可选),然后尝试以下操作:
th
button(class="btn btn-small" type="button") Slett
来自docs:
Buffered code starts with =
. It evaluates the JavaScript expression
and outputs the result. For security, buffered code is first HTML
escaped.
因此 th=button(class="btn btn-small", type="button") Slett
将不起作用。
我正在尝试将按钮添加为 Pug table 中的行元素。 但是按钮没有被插入到特定的行 以下是哈巴狗代码
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
在浏览器中获取 'Something failed error'
没有按钮代码工作正常。
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
删除 button
之前的 =
和 class
和 type
之间的 ,
(可选),然后尝试以下操作:
th
button(class="btn btn-small" type="button") Slett
来自docs:
Buffered code starts with
=
. It evaluates the JavaScript expression and outputs the result. For security, buffered code is first HTML escaped.
因此 th=button(class="btn btn-small", type="button") Slett
将不起作用。