很多时候我们会遇到一个东西输入某个类型的情况
比如一个产品的分类,这里的type字段:
通常我们会用0 1 2来表示不同的类型,而不是具体的文字(如手机、电脑、鼠标这样的文字),这就导致了一个问题,前端显示内容
最原始的方法是这样:
<select name="type"> <option value="0" <if condition="$rs['type'] eq 0">selected="true"</if>>广告</option> <option value="1" <if condition="$rs['type'] eq 1">selected="true"</if>>建材</option> <option value="2" <if condition="$rs['type'] eq 2">selected="true"</if>>素材</option> </select>
而现在有了更方便的方法,使用一个数据表来保存type的数字类型和文字类型的对应关系:
有了这个表之后就方便多了,只需在后台取出这个表的数据分配到前端,前端进行遍历即可
后台:
$m=M('type'); $rs=$m->select(); $this->assign('type',$rs);
前端:
<select name="type"> <foreach name='type' item='val'> <option value="<{$val['type_id']}>" <if condition="$rs['type'] eq $val['type_id']">selected="true"</if>><{$val['type_name']}></option> </foreach> </select>