我正在使用非实体字段(在集合中)处理Symfony表单。
(编辑:以下所有代码现在运作良好!)
为了理解,这是一些代码片段: 表单定义(在PieceType类中):
// Form\Type\PieceType.php
$builder
->add('name',
'text',
array('max_length' => 70,
'label' => "piece.name"))
->add('compositors',
'collection',
array('type' => 'entity',
'options' => array('class' => 'kalisonStdArchiveBundle:Person',
'property_path' => false),
'allow_add' => true,
'allow_delete' => true,
'property_path' => false,
'by_reference' => false,
'label' => 'piece.compositor'
));
使用javascript添加合成器字段,使用数据原型(解释here)。
使用该视图完成渲染:
// Resources\views\Piece\piece.new.html.twig
{% block javascripts %}
{{ parent() }}
<script type="text/javascript">var nbCompositors = {{ form.compositors|length }}</script>
<script type="text/javascript" src="{{ asset('bundles/kalisonstdarchive/js/piece.new.js') }}"></script>
{% endblock javascripts %}
{% block main %}
<form novalidate action="{{ path("kalisonStdArchiveBundle_piece_new") }}" method="post" {{ form_enctype(form) }}>
{{ form_widget(form) }}
<button id="add-compositor">{{ "compositor.add"|trans }}</button>
<input type="submit" id="submit" value="{{ "piece.create"|trans }}" name="submit" />
</form>
{% endblock %}
相关的javascript是:
// Resources\public\js\piece.new.js
$(document).ready(function() {
jQuery('#add-compositor').click(function() {
var list = jQuery('#kalison_stdarchivebundle_piecetype_compositors');
var newCompositor = list.attr('data-prototype');
newCompo = newCompositor.replace(/\$\$name\$\$/g, nbCompositors);
nbCompositors++;
var html = jQuery('<p></p>').html(newCompositor);
html.appendTo(jQuery('#kalison_stdarchivebundle_piecetype_compositors'));
return false;
});
});
这是管理数据的动作。由@ l3l0通知,我没有检查最后一次迭代,这导致$ addCompositor为null:
// Controller\PieceController.php
$newPiece = new Piece();
$form = $this->get('form.factory')->create(new PieceType(), $newPiece);
if ('POST' == $request->getMethod()) {
$form->bindRequest($request);
if ($form->isValid()) {
$this->get('piece_manager')->savePiece($newPiece);
if ($form["compositors"] != null) {
foreach ($form["compositors"] as $formCompositor) {
$addCompositor = $formCompositor->getData();
if ($addCompositor != null) {
$newPerfomance = new Performance();
$newPerfomance->setPerson($addCompositor); // Throw Catchable Fatal Error
$newPerfomance->setPiece($newPiece);
$newPerfomance->setInstrument($instrument);
$this->get('performance_manager')->savePerformance($newPerfomance);
}
}
}
}
}
我的问题是我收到了一个Symfony错误:Argument 1 passed to Performance::setPerson() must be an instance of Person, null given
。 (当然,Performance类中的方法是public function setPerson(Person $person)
)
我试图检查确定:if (!is_object($addCompositor)) throw new Exception('NOT AN OBJECT');
是的,$addCompositor
确实是一个对象。
我认为它是一个不兼容的对象,但是如果尝试打印对象:var_dump($addCompositor)
。
我很惊讶:object(...\Entity\Person)
最后我的最后一次测试是在这个对象上调用一个方法:echo $addCompositor->getLastName();
。
也工作,打印名称 - 然后抛出这个众所周知的错误:Call to a member function getLastName() on a non-object
。
所以,我的代码现在看起来像这样:
foreach ($form["compositors"] as $formCompositor) {
$addCompositor = $formCompositor->getData();
if (!is_object($addCompositor))
throw new Exception('NOT AN OBJECT'); // Not throwing: it's an object
var_dump($addCompositor); // Print a Person object
echo $addCompositor->getLastName(); // Print the name, then break on "non-object" error
$newPerfomance = new Performance();
$newPerfomance->setPerson($addCompositor); // Throw Catchable Fatal Error
$newPerfomance->setPiece($newPiece);
$newPerfomance->setInstrument($instrument);
$this->get('performance_manager')->savePerformance($newPerfomance);
}
起初我以为这是一个Symfony错误,但是最后一次测试我有点困惑。 你曾经面对过吗?
答案 0 :(得分:0)
在下一次迭代中,您似乎没有数据对象。
请检查提交的数据并向我们展示JS代码。您也可以查看$form["compositors"]
中的内容
你能说出你使用的是哪个版本的Symfony吗? (2.0.x,2.1?)