{{
form_row(form.quantity, {
'attr': {
'class': 'center-text',
style: "color: red;"
},
'empty_value': '1'
})
}}
我更改了empty_value的值,但它无法生效。
感谢。
答案 0 :(得分:0)
尝试将empty_value
替换为value
,如下所示:
{{
form_row(form.quantity, {
'attr': {
'class': 'center-text',
style: "color: red;"
},
'value': '1'
})
}}