我正在将一个数组从PHP分配给smarty模板,如下所示:
$smarty->assign('data', $contact_list_user_data);
该数组如下所示:
Array
(
[op] => import
[contact_list_id] => 9
[form_submitted] => yes
[cl_user_type] => Array
(
[0] => upload_from_file
[1] => copy_paste_from_excel
)
[registered_users_from_date] =>
[registered_users_to_date] =>
[logged_in_users_from_date] =>
[logged_in_users_to_date] =>
[not_logged_in_users_from_date] =>
[not_logged_in_users_to_date] =>
[test_pack_type_id] =>
[submit_value] => Submit
)
现在,在smarty模板中的表单上,如果找到匹配的值,我想检查特定的复选框。但是我无法以正确的方式解析数组。简而言之,如果子数组cl_user_type
中的值与表单中存在的复选框的值相匹配,我希望选中该复选框。在上面的例子中,我想要选择最后两个复选框。我应该怎么写这个条件聪明呢?你能帮助我实现这个目标吗?我尝试了if in first condition但是没能成功。
smarty模板的代码如下:
<tr height="30" id="user_option">
<td width="300">
<input type="checkbox" id="users" name="cl_user_type[]" value="users" {if $data.cl_user_type=='users'}checked="checked"{/if}/>Users
</td>
<td> <input type="checkbox" id="upload_from_file" name="cl_user_type[]" value="upload_from_file" />Upload From File
</td>
<td>
<input type="checkbox" id="copy_paste_from_excel" name="cl_user_type[]" value="copy_paste_from_excel"/>Copy paste from excel
</td>
</tr>
答案 0 :(得分:1)
你有没有尝试过聪明的{html_checkboxes}?如果由于某种原因你不能使用它,有两个解决方案,更好的一个修改cl_user_type数组,然后再将它发送到smarty:
[cl_user_type] => Array
(
[upload_from_file] => true,
[copy_paste_from_excel] =>true
)
然后在你聪明的代码中:
<input type="checkbox" id="upload_from_file" name="cl_user_type[]" value="upload_from_file" {if $data.cl_user_type.upload_from_file}checked="checked"{/if}/>
另一个(更糟糕的)选项,为每个复选框使用foreach:
<input type="checkbox" id="upload_from_file" name="cl_user_type[]" value="upload_from_file"
{foreach $data.cl_user_type as $type}
{if $type=='upload_from_file'}checked="checked"{/if}
{/foreach}
/>
作为旁注,我建议您使用变量,以便轻松复制不同用户类型的复选框。第一个解决方案如下所示:
{$user_type = 'copy_paste_from_excel'}
<input type="checkbox" id="{$user_type}" name="cl_user_type[]" value="{$user_type}" {if $data.cl_user_type.$user_type}checked="checked"{/if}/>