2011-09-03 70 views
0

我的模型用戶做出了選擇場與國家一個屬於關聯關係。所以,當我在register.ctp例如添加添加一個空的選項字段由模型

$this->Form->input('country'); 

,國家的selectfield所示。

<select name="foo"> 
    <option value="germany">Germany</option> 
    <option value="finland">Finland</option> 
    <option value="usa">USA</option> 
</select> 

所以我的問題是:是否有一個在selectfield中獲得空optionfield的蛋糕?

像:

<select name="foo"> 
    <option value="0"></option> 
    <option value="germany">Germany</option> 
    <option value="finland">Finland</option> 
    <option value="usa">USA</option> 
</select> 

回答

0

試試這個...

$this->Form->input('country', array('empty'=>'Select a country')); 
+0

注:這將增加連接 「空」 的關鍵 - 如果你需要一個整數0鍵,使用 '空' =>數組(0 =>'選擇一個國家')! – mark

+0

感謝您的幫助! – Fortuna

1
$this->Form->input('country',array('empty'=>'No country')); 
相關問題