- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我在使用 Symfony2 中的表单时遇到一个奇怪的问题。
首先,我在此处的实体类 Job
中将验证作为 annotations
添加:
class Job
{
/**
* @ORM\Id
* @ORM\Column(type="integer")
* @ORM\GeneratedValue(strategy="AUTO")
*/
protected $id;
/**
* @ORM\Column(type="string", length=255, nullable=true)
* @Assert\NotBlank()
* @Assert\Choice(callback="getTypeValues")
*/
protected $type;
/**
* @ORM\Column(type="string", length=255)
* @Assert\NotBlank()
*/
protected $company;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
protected $logo;
/**
* @Assert\Image()
*/
protected $file;
/**
* @ORM\Column(type="string", length=255, nullable=true)
* @Assert\Url()
*/
protected $url;
/**
* @ORM\Column(type="string", length=255)
* @Assert\NotBlank()
*/
protected $position;
/**
* @ORM\Column(type="string", length=255)
* @Assert\NotBlank()
*/
protected $location;
/**
* @ORM\Column(type="text")
* @Assert\NotBlank()
*/
protected $description;
/**
* @ORM\Column(type="text")
* @Assert\NotBlank()
*/
protected $how_to_apply;
/**
* @ORM\Column(type="string", length=255, unique=true)
* @Assert\NotBlank()
*/
protected $token;
/**
* @ORM\Column(type="boolean", nullable=true)
*/
protected $is_public;
/**
* @ORM\Column(type="boolean", nullable=true)
*/
protected $is_activated;
/**
* @ORM\Column(type="string", length=255)
* @Assert\NotBlank()
* @Assert\Email()
*/
protected $email;
/**
* @ORM\Column(type="datetime")
*/
protected $expires_at;
/**
* @ORM\Column(type="datetime")
*/
protected $created_at;
/**
* @ORM\Column(type="datetime", nullable=true)
*/
protected $updated_at;
/**
* @ORM\ManyToOne(targetEntity="Category", inversedBy="jobs")
* @ORM\JoinColumn(name="category_id", referencedColumnName="id")
* @Assert\NotBlank()
*/
protected $category;
}
我创建了一个 JobType
类并在表单中使用它。所以我可以添加工作。
class JobType extends AbstractType
{
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder
->add('type', 'choice', array('choices' => Job::getTypes(), 'expanded' => true))
->add('category')
->add('company')
->add('file', 'file', array('label' => 'Company logo', 'required' => false))
->add('url')
->add('position')
->add('location')
->add('description')
->add('how_to_apply', null, array('label' => 'How to apply?'))
->add('is_public', null, array('label' => 'Public?'))
->add('email')
;
}
public function setDefaultOptions(OptionsResolverInterface $resolver)
{
$resolver->setDefaults(array(
'data_class' => 'Ibw\JobeetBundle\Entity\Job',
));
}
public function getName()
{
return 'job';
}
}
这是我的 Controller :
public function createAction(Request $request)
{
$entity = new Job();
$form = $this->createForm(new JobType(), $entity);
$form->handleRequest($request);
if($form->isValid())
{
$em = $this->getDoctrine()->getManager();
$em->persist($entity);
$em->flush();
return $this->redirect($this->generateUrl('ibw_job_preview', array(
'company' => $entity->getCompanySlug(),
'location' => $entity->getLocationSlug(),
'position' => $entity->getPositionSlug(),
'token' => $entity->getToken(),
)));
} else {
return new Response(var_dump($form->getErrorsAsString()));
// return new Response($form->getErrorsAsString());
// return $this->render('IbwJobeetBundle:Job:new.html.twig', array(
// 'form' => $form->createView(),
// ));
}
}
现在,当我执行 var_dump($form->getErrorsAsString())
时,我得到:
string 'ERROR: This value should not be blank.
type:
0:
No errors
1:
No errors
2:
No errors
category:
No errors
company:
No errors
file:
No errors
url:
No errors
position:
No errors
location:
No errors
description:
No errors
how_to_apply:
No errors
is_public:
No errors
email:
No errors
' (length=355)
或者当我执行 var_dump($form->getErrors())
我得到:
array (size=1)
0 =>
object(Symfony\Component\Form\FormError)[614]
private 'message' => string 'This value should not be blank.' (length=31)
protected 'messageTemplate' => string 'This value should not be blank.' (length=31)
protected 'messageParameters' =>
array (size=0)
empty
protected 'messagePluralization' => null
我不知道是什么产生了这个 ERROR: This value should not be blank.
错误。我很难弄清楚。任何帮助将不胜感激。
最佳答案
我刚刚遇到了同样的问题。我得到了一个全局错误 ERROR: This value should not be blank
,但是特定字段没有任何错误。
nifr是对的,验证实际上应用于基础对象。问题是在表单将提交的数据应用到对象之后对象是否有效。 http://symfony.com/doc/current/book/forms.html#form-validation
这个问题的原因是表单提交后对象的某些字段无效,这些字段不包含在表单中。要解决此问题,您可以在验证之前将有效数据传递给对象的字段,或者使用验证组仅针对类上的某些约束来验证对象。
关于php - Symfony2 表单验证总是返回 ERROR : This value should not be blank,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19501316/
我不明白 int 63823 为何比 double 1.0 占用更少的空间。在这个特定实例中,int 中是否没有存储更多信息? 最佳答案 I don't understand how an int 6
这可能不是一个直接的代码问题,但它是一个经常出现在 SO 上的问题,我发现阅读它非常有用。 App Store - Help answering “Missing Compliance” (using
我在我们的应用程序中使用 syncfusion 寻呼机和下拉列表请打开以下链接。 https://stackblitz.com/edit/angular-nv6myv?file=src%2Fapp%2
以便解释指针和引用in this question我写了这段代码。 MyClass& MyClass::MyInstance() { static MyClass & myLoca
在 C 和 C++ 中,assert 是一个非常 重量级例程,将错误写入 stdout 并终止程序。在我们的应用程序中,我们实现了一个更强大的 assert 替代品,并为其提供了自己的宏。已尽一切努力
我已经创建了一个 MVC webApi 项目,现在我想使用身份验证和授权。我想我已经实现了这种安全措施,但由于某种原因,有些事情变糟了,当我编写我的凭据并尝试调用一些 webApi 方法时,显示消息“
我发现自己使用一种奇怪的方式向我的函数添加回调函数,我想知道是否有更通用的方式向函数添加回调函数,最好的情况是我的所有函数都检查最后给定的作为函数的参数,如果是,则将其用作回调。 我以前是这样的: v
几乎从来没有我只想获取某个 Remote 的情况;我总是想要所有的 Remote 。我认为这将是一个足够常见的用例,git 会考虑它(与他们有 pull.rebase true 的方式相同)。 那么,
我正在尝试使用 inarray 但它总是返回 true?有任何想法吗? (所有 li 均已显示) $("#select-by-color-list li").hide(); // get the se
我正在尝试为我公司的开发环境设置过期网址。我们使用 lighttpd在此环境中提供上传的文件,我发现 these docs这似乎相当有希望。 问题是我似乎根本无法让它工作,而且我有点不知所措,试图找出
我无法让“文件夹”外部变量工作。我总是得到[:]。 我正在 Windows 下的 Grails 上进行开发(这就是为什么外部配置文件看起来像 file:C:\path\to/file)。 我在另一个项
这个问题是出于对 PL 如何工作的好奇,而不是其他任何事情。 (它实际上是在查看与 Haskell 不同的 SML 时想到的,因为前者使用按值调用 - 但我的问题是关于 Haskell。) Haske
我有一个高速缓存内存模块,我希望它是可字寻址的,但有字节的写使能信号。 always @ (posedge clk) begin //stuff... if(write) begin
我正在处理一些代码,其中一个对象“foo”正在创建另一个对象对象“bar”,并向其传递一个Callable。之后 foo 将返回bar,然后我希望 foo 变得无法访问(即:可用于垃圾收集)。 我最初
我已将我的程序与此方法相关联: public static void CreateFileAssociation(string extension, string key, string descri
所以我正在进行目录遍历,但我无法让 opendir 按照我想要的方式工作。它总是无法打开我发送的目录,它给出了一些未知的错误。我通常传入 argv[1],但我放弃了,只是开始硬编码路径。 char *
这个问题在这里已经有了答案: How do I compare strings in Java? (23 个回答) 关闭 9 年前。 出于某种原因,我的(基本)程序总是打印我为 else 语句保留的
我不想冒为此提出破解的风险,因为它涉及 datetime 对象。基本上,我想按如下方式进行转换: 2010-04-21 06:37:53 -> 2010-04-21 06:40:00 2010-08-
我正在用 C 语言玩文件 I/O。我正在尝试使用 fgets 从一个文件中读取数据并将其输出到另一个文件。问题是它总是返回 NULL,因此没有任何内容被复制到输出文件中。这是我的代码: #includ
class MyClass { // empty class with no base class }; int main() { MyClass* myClass = new MyC
我是一名优秀的程序员,十分优秀!