我是Zend框架的新手,所以请耐心等待。
我正在让控制器与模型交互,然后将该信息发送到视图。目前我的代码看起来像这样:
//Controller
$mapper = new Application_Model_Mapper();
$mapper->getUserById($userID);
$this->view->assign('user_name', $mapper->user_name);
$this->view->assign('about', $mapper->about;
$this->view->assign('location', $mapper->location);
//Model
class Application_Model_Mapper
{
private $database;
public $user_name;
public $about;
public $location;
public function __construct()
{
$db = new Application_Model_Dbinit;
$this->database = $db->connect;
}
public function getUserById($id)
{
$row = $this->database->fetchRow('SELECT * FROM my_table WHERE user_id = '. $id .'');
$this->user_name = $row['user_name'];
$this->about = $row['about'];
$this->location = $row['location'];
}
}
//View
<td><?php echo $this->escape($this->user_name); ?> </td>
<td><?php echo $this->escape($this->about); ?></td>
<td><?php echo $this->escape($this->location); ?></td>
该代码显然不是完整的,但您可以想象我是如何尝试使用该模型的。我想知道这是一个很好的Zend编码策略吗?
我想知道,因为如果我从模型中获取更多数据,控制器开始变得非常大(每个项目一行),并且模型有很多公共数据成员。
我不禁想到有更好的方法,但我试图避免让视图直接访问模型。
提前谢谢!
答案 0 :(得分:2)
通过ZF团队负责人查看这些幻灯片,了解对象的建模。
http://www.slideshare.net/weierophinney/playdoh-modelling-your-objects
答案 1 :(得分:1)
您应该使用完整的对象,而不是按属性分解和重建它们。
Zend有一个DB抽象层,您可以使用它来快速完成它。看看这些
http://framework.zend.com/manual/en/zend.db.html http://framework.zend.com/manual/en/zend.db.table.html
作为起点,开始将完整(首选数据传输)对象传递给视图。
//This is just a simple example, I'll leave it up to you how you want to organize your models. You can use several strategies. At work we use the DAO pattern.
$user = $userModel->getUser($id);
$this->view->user = $user;
And in your view,
Name : <?=$this->user->name?> <br>
About me : <?=$this->user->about?> <br>