4

我的 Yii 安装有问题,我试图返回一个相当基本的查询,但我没有得到在线教程说我应该得到的结果。我有 2 个大致如下的模型:

价钱:

class Pricing extends CActiveRecord
{
/**
 * Returns the static model of the specified AR class.
 * @param string $className active record class name.
 * @return Pricing the static model class
 */
public static function model($className=__CLASS__)
{
    return parent::model($className);
}

/**
 * @return string the associated database table name
 */
public function tableName()
{
    return 'pricing';
}

/**
* @return string the primary key
*/
public function primaryKey(){
    return 'ID';
}

...

/**
 * @return array relational rules.
 */
public function relations()
{
    // NOTE: you may need to adjust the relation name and the related
    // class name for the relations automatically generated below.
    return array(
        'xpricing_routes' => array(self::HAS_MANY, 'PricingRoutes', 'ID_pricing'),
    );
}

和定价路线:

class PricingRoutes extends CActiveRecord
{
/**
 * Returns the static model of the specified AR class.
 * @param string $className active record class name.
 * @return PricingRoutes the static model class
 */
public static function model($className=__CLASS__)
{
    return parent::model($className);
}

/**
 * @return string the associated database table name
 */
public function tableName()
{
    return 'pricing_routes';
}

/**
* @return string the primary key
*/
public function primaryKey(){
    return 'ID';
}
...
/**
 * @return array relational rules.
 */
public function relations()
{
    // NOTE: you may need to adjust the relation name and the related
    // class name for the relations automatically generated below.
    return array(
        'xpricing' => array(self::BELONGS_TO, 'Pricing', 'ID_pricing'),
    );
}

然后在控制器中我们有:

$criteria = new CDbCriteria;
$criteria->with = array('xpricing_routes'); 
$criteria->together=true;       

$pricing_records = Pricing::model()->findAll($criteria);
$pricing_records_arr = CHtml::listData($pricing_records, 'id', 'name');

echo '<pre>';
print_r($pricing_records);
print_r($pricing_record_arr);
echo '</pre>';

您可能已经知道,我们有 2 个表,分别称为定价和定价路径。定价路由表有一个名为 ID_pricing 的外键,它指向定价表中的 ID 字段。定价表有一个条目,pricing_routes 表有 4 个条目,它们都在 ID_pricing 字段中具有定价表中一项的主键。所以我们应该得到 4 个结果到我们正在运行的查询中,当我运行 Yii 使用 AR 生成的查询时,这就是我得到的。

我们遇到的问题是 $pricing_records 变量是一个只有一个定价对象的数组。该对象包含我们需要的数据,但不是真正可用的方式。$pricing_records_arr 变量只是一个空数组。我发现的文档似乎表明我们应该获得一组定价对象,每个定价对象也包含来自pricing_routes 表的信息。我们知道,使用 AR 可能不是获取这些数据的最佳方式,但我们有理由让它发挥作用,因此任何关于如何做到这一点的想法都将不胜感激。

编辑:

事实证明,这最终成为对我得到的东西的误解。对这个问题的评论给了我我需要的信息。

4

2 回答 2

1

如果你打电话

$pricing_records = Pricing::model()->findAll($criteria);

您将仅获得一条活动记录,其中的属性填充了“定价”表中的值。如果你想从属于这个特定“定价”的“pricing_routes”中获取所有记录,你必须调用

$pricing_records->xpricing_routes

其中“xpricing_routes”是您在模型中正确定义的关系的名称。如果没有匹配记录,则返回 PricingRoutes 数组或 null。

于 2013-03-15T12:41:57.990 回答
0

如果你使用 findall 它会返回一个数组,即使只有一条记录


$pricing_records = Pricing::model()->findAll($criteria);
foreach($pricing_records as $var){
$var->xpricing_routes->ID_pricing;//any variable
}

或者如果只有一个字段可以使用



$pricing_records = Pricing::model()->find($criteria);
$pricing_records->xpricing_routes->ID_pricing;//any variable

于 2013-03-15T17:33:58.080 回答