{html_options}

{html_options}是一个自定义函数, 可以使用提供的数据,生成HTML的<select><option>标签,还可以设置选中项等属性。

参数名称 类型 必选参数 默认值 说明
values array Yes, 除非使用 options 属性 n/a 下拉框值的数组
output array Yes, 除非使用 options 属性 n/a 下拉框显示的数组
selected string/array No empty 选中的项
options 数组 Yes, 除非使用 values 和 output n/a 键值对的数组,用于下拉框
name string No empty select组的名称
  • 必要的属性是valuesoutput, 除非你使用组合的options来代替。

  • 除非提供了可选属性name, 才会创建 <select></select>标签, 不然,只会生成<option>列表。

  • 如果设置的值是数组,会当作HTML的<optgroup>,并且显示该下拉组。 <optgroup>是支持递归的。

  • 其他不在上面列表中的键值对参数,会直接在输出的 <select> 标签中显示成 名称=值 的属性。 如果可选参数name没有设置,那么它们将被忽略。

  • 全部的输出都符合XHTML的。


Example 8.9. 使用options属性

  1. <?php
  2. $smarty->assign('myOptions', array(
  3. 1800 => 'Joe Schmoe',
  4. 9904 => 'Jack Smith',
  5. 2003 => 'Charlie Brown')
  6. );
  7. $smarty->assign('mySelect', 9904);
  8. ?>
  9.  

下面模板将生成一个下拉列表。注意name提供了值,所以会生成<select>标签。

  1. {html_options name=foo options=$myOptions selected=$mySelect}
  2.  

输出:

  1. <select name="foo">
  2. <option value="1800">Joe Schmoe</option>
  3. <option value="9904" selected="selected">Jack Smith</option>
  4. <option value="2003">Charlie Brown</option>
  5. </select>
  6.  


Example 8.10. 分开赋值valuesouptut

  1. <?php
  2. $smarty->assign('cust_ids', array(56,92,13));
  3. $smarty->assign('cust_names', array(
  4. 'Joe Schmoe',
  5. 'Jane Johnson',
  6. 'Charlie Brown'));
  7. $smarty->assign('customer_id', 92);
  8. ?>
  9.  

上面的两个数组,将会如下输出HTML (注意这里有使用了PHP的 count()函数作为修饰器来计算size值).

  1. <select name="customer_id" size="{$cust_names|@count}">
  2. {html_options values=$cust_ids output=$cust_names selected=$customer_id}
  3. </select>
  4.  

输出:

  1. <select name="customer_id" size="3">
  2. <option value="56">Joe Schmoe</option>
  3. <option value="92" selected="selected">Jane Johnson</option>
  4. <option value="13">Charlie Brown</option>
  5. </select>
  6.  
  7.  


Example 8.11. 数据库例子(如 ADODB 或 PEAR)

  1. <?php
  2.  
  3. $sql = 'select type_id, types from contact_types order by type';
  4. $smarty->assign('contact_types',$db->getAssoc($sql));
  5.  
  6. $sql = 'select contact_id, name, email, contact_type_id
  7. from contacts where contact_id='.$contact_id;
  8. $smarty->assign('contact',$db->getRow($sql));
  9.  
  10. ?>
  11.  

下面是模板,注意使用了truncate修饰器。

  1. <select name="type_id">
  2. <option value='null'>-- none --</option>
  3. {html_options options=$contact_types|truncate:20 selected=$contact.type_id}
  4. </select>
  5.  


Example 8.12. <optgroup> 下拉组

  1. <?php
  2. $arr['Sport'] = array(6 => 'Golf', 9 => 'Cricket',7 => 'Swim');
  3. $arr['Rest'] = array(3 => 'Sauna',1 => 'Massage');
  4. $smarty->assign('lookups', $arr);
  5. $smarty->assign('fav', 7);
  6. ?>
  7.  

而模板里:

  1. {html_options name=foo options=$lookups selected=$fav}
  2.  

输出:

  1. <select name="foo">
  2. <optgroup label="Sport">
  3. <option value="6">Golf</option>
  4. <option value="9">Cricket</option>
  5. <option value="7" selected="selected">Swim</option>
  6. </optgroup>
  7. <optgroup label="Rest">
  8. <option value="3">Sauna</option>
  9. <option value="1">Massage</option>
  10. </optgroup>
  11. </select>
  12.  

参见 {html_checkboxes}{html_radios}

原文: https://www.smarty.net/docs/zh_CN/language.function.html.options.tpl