我尝试以不同的方式解决这个问题,但似乎没有任何效果。我有 2 个模型:
namespace Admin\Model;
use Zend\Db\TableGateway\TableGateway;
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 Admin\Model;
use Zend\Db\TableGateway\TableGateway;
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
模型中,我需要使用模型中的getAttachment
方法UsersMetaTable
。我怎样才能在 Zend Frenework 2 中做到这一点?
我的两个模型定义在Modele.php
:
public function getServiceConfig(){
return array(
'abstract_factories' => array(),
'aliases' => array(),
'factories' => array(
'Admin\Model\AttachmentTable' => function($sm) {
$tableGateway = $sm->get('AttachmentTableGateway');
$table = new AttachmentTable($tableGateway);
return $table;
},
'AttachmentTableGateway' => function ($sm) {
$dbAdapter = $sm->get('Zend\Db\Adapter\Adapter');
$resultSetPrototype = new ResultSet();
$resultSetPrototype->setArrayObjectPrototype(new attachment()); // Notice what is set here
return new TableGateway('attachments', $dbAdapter, null, $resultSetPrototype);
},
'Admin\Model\UsersMetaTable' => function($sm) {
$tableGateway = $sm->get('UsersMetaTableGateway');
$table = new UsersMetaTable($tableGateway);
return $table;
},
'UsersMetaTableGateway' => function ($sm) {
$dbAdapter = $sm->get('Zend\Db\Adapter\Adapter');
$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' => 'Imagine\Gd\Imagine',
),
'services' => array(),
'shared' => array(),
);
}