除了上一个问题Attache zend filters and validation chains to models/doctrine entities之外,我已经尝试了Spiffy框架,但我得到了这样的异常堆栈:异常没有为“title”指定表单元素,并且没有自动确定“漂亮\ Zend的\表”。 在我的实体中,我有这个:
<?php
namespace Entities;
use Doctrine\ORM\Mapping as ORM;
use Spiffy\Doctrine\AbstractEntity as Entity;
use Spiffy\Doctrine\Annotations\Filters as Filter;
use Spiffy\Doctrine\Annotations\Validators as Assert;
/** @ORM\Entity(repositoryClass="Repositories\PostRepository") */
class Post extends Entity {
public function __construct()
{
$this->created = new \DateTime("now");
$this->comments = new \Doctrine\Common\Collections\ArrayCollection();
}
public function __get($property)
{
return $this->$property;
}
public function __set($name, $value)
{
$this->$name = $value;
return $this->$name;
}
/**
* @ORM\Id @ORM\Column(type="integer") @ORM\GeneratedValue
*/
private $id;
/**
* @var string $title
* @Filter\Alnum
* @Assert\StringLength(5)
* @ORM\Column(type="string",length=255)
*/
private $title;
/**
* @ORM\Column(type="text")
*/
private $body;
/**
* @ORM\Column(type="datetime")
*/
private $created;
/**
* @ORM\OneToMany(targetEntity="Comment", mappedBy="post", fetch="LAZY")
*/
private $comments;
}
我的表格是这样的:
<?php
use \Spiffy\Zend\Form as Form;
class Application_Form_Post extends Form
{
public function init()
{
//var_dump($this->getEntity()); //returns null
// die;
$this->add('title');
$this->add('body');
$this->addElement('submit', 'submit', array(
));
}
}
所以我在这里阻止自己。谢谢你的帮助。
答案 0 :(得分:0)
在我的application.ini中,我注意到这一行:
pluginPaths.Bisna\Application\Resource\ = "Bisna/Application/Resource"
和
autoloaderNamespaces[] = Bisna
但我还是有例外:
Uncaught exception 'ReflectionException' with message 'Class Doctrine\ORM\Mapping\Driver\AnnotationDriver does not exist' in C:\Spiffy\lib\Spiffy\Doctrine\Container.php on line 359
对我来说不清楚的是,在bisna资源中,我有类似的东西:
\Zend_Registry::set('doctrine', $container);
在我喜欢的spiffy资源中:
`Zend_Registry::set('Spiffy_Doctrine', $container);`
但在我的Boostrap.php中,我有这两个:
$this->bootstrap('doctrine');
$container = $this->getResource('doctrine');
我被期望是学说和Spiffy_Doctrine之间的差异,但事实并非如此。还有一些适合我的东西,不可理解。我修改了Spiffy容器中的某些行,如下所示:
try{
$reflClass = new ReflectionClass($driverClass);
}catch (LogicException $Exception) {
die('Not gonna make it in here...');
}
catch(ReflectionException $Exception)
{
die('Your class does not exist! ' );
}
但是没有找到异常,我得到了这个:
`Uncaught exception 'ReflectionException'`
Ps:对不起来自linekdin的doctrine组内容的重复,但这些是我的答案。 Rigth现在我调试我的应用程序,也许我会弄清楚我缺少什么,但任何帮助都会很棒。谢谢。