gpt4 book ai didi

Symfony2 获取表单中的项目类型

转载 作者:行者123 更新时间:2023-12-04 22:48:50 24 4
gpt4 key购买 nike

我有一个表单,并且需要 bindrequest 中的字段类型,getType 方法不能正常工作:

$peticion = $this->getRequest();
if ($peticion->getMethod() == 'POST')
{
$form->bindRequest($peticion);

if ($form->isValid()) {

foreach($form as $key => $per)
$per->getType(); // i want the type of item [text,checkbox,etc] the method getType() dont work
}}

最佳答案

用这个:

foreach($form as $key => $per) {
$per->getConfig()->getType()->getName();
}

关于Symfony2 获取表单中的项目类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13166156/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com