Zend 2:如何在我当前的模型中使用在另一个模型中定义的方法



我试图用不同的方法解决这个问题,但似乎什么都不起作用。我有两种型号:

namespace AdminModel;
use ZendDbTableGatewayTableGateway;
class UsersMetaTable
{
    protected $tableGateway;
    public function __construct(TableGateway $tableGateway)
    {
        $this->tableGateway = $tableGateway;
    }
    public function saveData(UsersMeta $value)
    {
        ...
    }
    public function getAttachment($user_id){
        $user_id  = (int) $user_id;
        $rowset = $this->tableGateway->select(array('parent_id' => $user_id,'meta_key' =>'inside_users_attachement'));
        $row = $rowset->current();
        if (!$row) {
            return false;
            exit;
        }
        return $row->meta_value;
    }   
}

我现在的型号:

namespace AdminModel;
use ZendDbTableGatewayTableGateway;
class AttachmentTable
{
    protected $tableGateway;
    public function __construct(TableGateway $tableGateway)
    {
        $this->tableGateway = $tableGateway;
    }
    public function saveData(Attachment $value)
    {
        ...
    }
    public function getAttachment($user_id)
    {
        $user_id  = (int) $user_id;
        //HERE I NEED TO LOAD UsersMetaTable MODEL AND USE  getAttachment METHOD
        $attachment_id = $usersMetaTable->getAttachment($user_id);
        if($attachment_id){
            $rowset = $this->tableGateway->select(array('ID' => $attachment_id));
            $row = $rowset->current();
            if (!$row) {
                return false;
                exit;
            }
            return $row;
        }else{
            return false;
        }
    }
}

AttachmentTable模型中,我需要使用UsersMetaTable模型中的方法getAttachment。如何在Zend Franeworks 2中做到这一点?

我的两个模型在Modele.php:中定义

public function getServiceConfig(){
    return array(
        'abstract_factories' => array(),
        'aliases' => array(),
        'factories' => array(
            'AdminModelAttachmentTable' =>  function($sm) {
                            $tableGateway = $sm->get('AttachmentTableGateway');
                $table = new AttachmentTable($tableGateway);
                return $table;
            },
            'AttachmentTableGateway' => function ($sm) {
                $dbAdapter = $sm->get('ZendDbAdapterAdapter');
                $resultSetPrototype = new ResultSet();
                $resultSetPrototype->setArrayObjectPrototype(new attachment()); // Notice what is set here
                return new TableGateway('attachments', $dbAdapter, null, $resultSetPrototype);
            },
            'AdminModelUsersMetaTable' =>  function($sm) {
                $tableGateway = $sm->get('UsersMetaTableGateway');
                $table = new UsersMetaTable($tableGateway);
                return $table;
            },
            'UsersMetaTableGateway' => function ($sm) {
                $dbAdapter = $sm->get('ZendDbAdapterAdapter');
                $resultSetPrototype = new ResultSet();
                $resultSetPrototype->setArrayObjectPrototype(new UsersMeta()); // Notice what is set here
                return new TableGateway('inside_users_metas', $dbAdapter, null, $resultSetPrototype);
            },
        ),
        'invokables' => array(
        // defining it as invokable here, any factory will do too
            'my_image_service' => 'ImagineGdImagine',
        ),
        'services' => array(),
        'shared' => array(),
    );
}

您可以在工厂中将UsersMetaTable注入到AttachmentTable中,如下所示:

'AdminModelAttachmentTable' =>  function($sm) {
    $tableGateway = $sm->get('AttachmentTableGateway');
    $usersMetaTable = $sm->get('AdminModelUsersMetaTable');
    $table = new AttachmentTable($tableGateway, $usersMetaTable);
    return $table;
},

然后你需要更新你的构造函数,这样它就可以把注入的服务放在适当的位置:

namespace AdminModel;
use ZendDbTableGatewayTableGateway;
class AttachmentTable
{
    protected $tableGateway;
    protected $usersMetaTable;
    public function __construct(TableGateway $tableGateway, UsersMetaTable $usersMetaTable)
    {
        $this->tableGateway = $tableGateway;
        $this->usersMetaTable = $usersMetaTable;
    }
    // ...remaining class code
}

最新更新