2015-11-13 56 views
1
{{ 
    form_row(form.quantity, { 
     'attr': { 
      'class': 'center-text', 
      style: "color: red;" 
     }, 
     'empty_value': '1' 
    }) 
}} 

我改變了empty_value的值,但它不起作用。如何在Symfony中更改選項字段類型的選項empty_value?

謝謝。

+0

你的意思說: 「選擇的變化選項empty_value」 的時候? – felipsmartins

+0

我的意思是我在xxxType.php中定義了'empty_data',我想在xxx.html.twig中更改'empty_data'的值。可能嗎? – hhy

+1

在表單類或表單構建中設置「empty_data」。 – felipsmartins

回答

0

嘗試用value這樣的替換empty_value

{{ 
    form_row(form.quantity, { 
     'attr': { 
      'class': 'center-text', 
      style: "color: red;" 
     }, 
     'value': '1' 
    }) 
}} 
+0

這不起作用。 – hhy

+0

我編輯了我的答案,而不是嘗試這個。 –

+0

你爲什麼這麼說?我的帖子沒有提供答案嗎?當然它!據我說,這是他的代碼中的問題。 –

相關問題