在我的Yii应用程序中,我需要在控制器中执行联合查询并在视图中显示最终视图。这是我需要执行的mysql查询。我有三个表,即项目,制造商,items_manufacturers
SELECT items.id,item_desc,manufacturers.id,manufacturers.name FROM items_manufacturers,items,manufacturers WHERE items_manufacturers.item_id=item.id AND items_manufacturers.manufacturer_id=manufacturers.id.
模型之间的关系是
public function relations()
{
'item' => array(self::BELONGS_TO, 'Items', 'item_id'),
'manufacturer' => array(self::BELONGS_TO, 'Manufacturers', 'manufacturer_id'),
'itemsManufacturersLocations' => array(self::HAS_MANY, 'ItemsManufacturersLocations', 'items_manufacturer_id'),
);
这是我在控制器中执行的查询
public function actionJoint()
{
$imf=ItemsManufacturers::model()->with('item','manufacturer')->findAll();
$this->render('joint',array(
'imf'=>$imf
));
}
这是我在视图中实现的代码
<?php
$this->breadcrumbs=array(
'joint',
);
$this->menu=array(
array('label'=>'Create ItemsManufacturers', 'url'=>array('create')),
array('label'=>'Manage ItemsManufacturers', 'url'=>array('admin')),
);
?>
<h1> List Items and Manufacturers </h1>
<?php
$this->widget('zii.widgets.CListView',array(
'dataProvider'=>$imf,
'itemView'=>'_jointview',
)); ?>
我的部分视图渲染代码
<?php
/* @var $this ItemsManufacturersController */
/* @var $data ItemsManufacturers */
?>
<div class="view">
<b><?php echo CHtml::encode($data->getAttributeLabel('item_desc')); ?>:</b>
<?php echo CHtml::encode($data->item_desc); ?>
<br />
<b><?php echo CHtml::encode($data->getAttributeLabel('name')); ?>:</b>
<?php echo CHtml::encode($data->name); ?>
<br />
</div>
但是我收到了这个我无法纠正的错误。有人帮我解决这个问题。
Fatal error: Call to a member function getData() on a non-object in /var/www/yii_framework/framework/zii/widgets/CBaseListView.php on line 107
任何身体帮助我,因为我是新手,我该怎么办?
答案 0 :(得分:2)
我认为您在查看列表代码时遇到了错误。
<?php
$this->breadcrumbs=array(
'joint',
);
$this->menu=array(
array('label'=>'Create ItemsManufacturers', 'url'=>array('create')),
array('label'=>'Manage ItemsManufacturers', 'url'=>array('admin')),
);
?>
<h1> List Items and Manufacturers </h1>
<?php
$this->widget('zii.widgets.CListView',array(
'dataProvider'=>$dataProvider,,
'itemView'=>'_jointview',
)); ?>
现在你在控制器中更改了actionJoint()方法。
public function actionJoint()
{
$imf=ItemsManufacturers::model()->with('item','manufacturer')->findAll();
$dataProvider=new CArrayDataProvider($imf, array(
'id'=>'ItemsManufacturers',
'sort'=>array(
'attributes'=>array(
'item_desc', 'name'
),
),
'pagination'=>array(
'pageSize'=>10,
),));
$this->render('joint',array('dataProvider'=>$dataProvider));
}
现在在_joinview页面上。
检查print_r($data);
然后根据您的需要检索数据。
现在没事了。
希望它会对你有所帮助。
由于