私は zend 2 と教義 2 を使用しています
チェックボックスから返された値をデータベースに返して入力する方法がわかりません。値は、テーブルの複数のエントリを返す必要があります。
チェック ボックスの表示方法や使用方法に関するドキュメントや記事が見つかりません。ですから、これに関するアドバイスやサンプルコードをいただければ幸いです。
以下に私のクラスを同封しました。エンティティ クラスで問題が発生していると思われます。つまり、配列コレクションに getter/setter を適切に使用していないため、返されたポストフォームから、返された値が空であるというエラー メッセージが表示され続けます。
これが私のコードです:
私のmysqlテーブル:
CREATE TABLE workers_timetable(
id MEDIUMINT UNSIGNED NOT NULL,
timesId MEDIUMINT UNSIGNED NOT NULL,
INDEX (id ,timesId ),
INDEX times_id (timesId, id )
);
私のクラス;
<?php
namespace Workers\Entity;
use Doctrine\ORM\Mapping as ORM;
use Zend\InputFilter\InputFilter;
use Zend\InputFilter\Factory as InputFactory;
use Zend\InputFilter\InputFilterAwareInterface;
use Zend\InputFilter\InputFilterInterface;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\Common\Collections\Collection;
/**
*
* @ORM\Entity
* @ORM\Table(name="workers_timetable")
* @property int $timesId
*/
class WorkersAvailabilityTimeTable {
/**
* @ORM\Id
* @ORM\Column(type="integer");
* @ORM\GeneratedValue(strategy="AUTO")
*/
protected $id;
/**
* @ORM\Column(type="integer");
*/
protected $timesId;
public function __construct()
{
$this->timesId = new ArrayCollection();
}
public function getId()
{
return $this->id;
}
public function addTimesId(Collection $timesId)
{
foreach ($timesId as $timesId) {
$this->setTimesId($this);
$this->timesId->add($timesId);
}
}
public function setTimesId()
{
return $this->timesId;
}
public function removeTimesId(Collection $timesId)
{
foreach ($timesId as $timesId) {
$this->setTimesId(null);
$this->timesId->removeElement($timesId);
}
}
public function getTimesId()
{
return $this->timesId;
}
//put your code here
}
私のフィールドセットクラス
<?php
namespace Workers\Form\Fieldset;
use Workers\Entity\WorkersAvailabilityTimeTable;
use Doctrine\Common\Persistence\ObjectManager;
use DoctrineModule\Stdlib\Hydrator\DoctrineObject as DoctrineHydrator;
use Zend\Form\Fieldset;
use Zend\InputFilter\InputFilterProviderInterface;
class WorkersAvailabilityTimeTableFieldset extends Fieldset implements InputFilterProviderInterface
{
public function __construct(ObjectManager $objectManager)
{
parent::__construct('WorkerTimeTable');
$this->setHydrator(new DoctrineHydrator($objectManager, 'Workers\Entity\WorkersAvailabilityTimeTable'))
->setObject(new WorkersAvailabilityTimeTable());
$this->add(array(
'name' => 'id',
'type' => 'Zend\Form\Element\Hidden',
));
$this->add(array(
'type' => 'Zend\Form\Element\MultiCheckbox',
'name' => 'timesIds',
'options' => array(
'label' => 'Please Select Your Availablity',
'value_options' => array(
'1' =>'mon',
'2' =>'tues'
),
),
'attributes' => array(
'value' => '1' //set checked to '1'
)
));
)