0

我在 MySQL 中有一个问题表,一个问题 TableGateway 和一个 QuestionFactory 模型。根据 TableGateway 收到的 QuestionType,我想实例化一个不同的类,例如 TextQuestion()、BoolQuestion() 等。在 fetchall 情况下,这将返回这些不同类的结果集。

到目前为止,一切都是相当标准的:

            'Application\Model\QuestionTable' =>  function($sm) {
                $tableGateway = $sm->get('QuestionTableGateway');
                $table = new \Application\Model\QuestionTable($tableGateway);
                return $table;
            },
            'QuestionTableGateway' => function ($sm) {
                $dbAdapter = $sm->get('Zend\Db\Adapter\Adapter');
                $resultSetPrototype = new \Zend\Db\ResultSet\ResultSet();
                $resultSetPrototype->setArrayObjectPrototype(new \Application\Model\QuestionFactory());
                return new \Zend\Db\TableGateway\TableGateway('questions', $dbAdapter, null, $resultSetPrototype);
            },

QuestionTableGateway 扩展了 TableGatewayBase,它具有:

/**
 * fetch all
 * @return resultset
 */
public function fetchAll()
{
    $resultSet = $this->tableGateway->select();
    return $resultSet;
}

所以我需要让 QuestionFactory 根据数据库中的 QuestionType 返回一个不同的类。

我正在考虑使用特定于应用程序的版本扩展 Zend\Db\ResultSet,并使用不同的 setArrayObjectPrototype() 方法实现。

任何帮助将不胜感激。

堕胎。

4

1 回答 1

1

我在 zend 2 中做了这个小应用程序,解决了你的问题。最有趣的是 FabResiltSet 类,它从 AbstractResultSet 和 QuestionFab 扩展而来,它具有数组作为您想要制作的类的映射。

https://github.com/Kil0p/FabResultSet

于 2013-11-13T23:50:22.583 回答