ecshop $smarty->assign() 中的变量是怎么和模板中的对应的
比如:在模板中有<tr><tdstyle="height:35px;">联系电话</td><tdalign="left"style="height:30px;"><inp...
比如:在模板中有
<tr><td style="height: 35px;">联系电话</td><td align="left" style="height: 30px;"><input style="height: 30px;" placeholder="{$lang.phone}{$lang.require_field}" name="tel" type="text" class="inputBg_touch" value="{$consignee.tel|escape}" /></td></tr>
我在用smaty给模板的“联系电话”传值时$smarty->assign('?????', $tel);
单引号中的控件名字怎么设?'tel'和'phone'我都试过了,不行 展开
<tr><td style="height: 35px;">联系电话</td><td align="left" style="height: 30px;"><input style="height: 30px;" placeholder="{$lang.phone}{$lang.require_field}" name="tel" type="text" class="inputBg_touch" value="{$consignee.tel|escape}" /></td></tr>
我在用smaty给模板的“联系电话”传值时$smarty->assign('?????', $tel);
单引号中的控件名字怎么设?'tel'和'phone'我都试过了,不行 展开
2个回答
展开全部
上面 联系电话 是存在 $consignee 这个数组中的,在php文件中的写法就是:
$smarty->assign('consignee', $consignee); 其中的 $consignee 是一个数组,tel字段就在这个数组里。
说明:
$smarty->assign('consignee', $consignee); 可以传数组,也可以直接传一个值。传数组的话,模板中 需要foreach出来。如果只是一值,那就直接输出,例如php中写
$tel='123';
$smarty->assign('tel', $tel);
模板文件中 就直接 {$tel} 输出。
$smarty->assign('consignee', $consignee); 其中的 $consignee 是一个数组,tel字段就在这个数组里。
说明:
$smarty->assign('consignee', $consignee); 可以传数组,也可以直接传一个值。传数组的话,模板中 需要foreach出来。如果只是一值,那就直接输出,例如php中写
$tel='123';
$smarty->assign('tel', $tel);
模板文件中 就直接 {$tel} 输出。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询