0

所以我继承了一个 Yii 应用程序,我正在尝试让这个应用程序工作,它为科学资料表的管理做一个基本的 CRUD。我们在 Giix 上使用 Yii

这是错误:“PHP 致命错误:第 58 行 /var/www/idtools.org/www/yii/framework/db/ar/CActiveRecord.php 中允许的内存大小为 134217728 字节已用尽(试图分配 16 字节) "

更新操作给我们带来了问题。更新在控制器中如下所示:

public function actionUpdate($id) {
    $model = $this->loadModel($id, 'Factsheet');

    if (isset($_POST['Factsheet'])) {
        $model->setAttributes($_POST['Factsheet']);

        if ($model->save()) {
            $this->redirect(array('view', 'id' => $model->factsheetid));
        }
    }

    $this->render('update', array(
            'model' => $model,
            ));
}

视图如下所示:

$this->breadcrumbs = array(
    $model->label(2) => array('index'),
    GxHtml::valueEx($model) => array('view', 'id' => GxActiveRecord::extractPkValue($model, true)),
    Yii::t('app', 'Update'),
);

$this->menu = array(
    array('label' => Yii::t('app', 'List') . ' ' . $model->label(2), 'url'=>array('index')),
    array('label' => Yii::t('app', 'Create') . ' ' . $model->label(), 'url'=>array('create')),
    array('label' => Yii::t('app', 'View') . ' ' . $model->label(), 'url'=>array('view', 'id' => GxActiveRecord::extractPkValue($model, true))),
    array('label' => Yii::t('app', 'Manage') . ' ' . $model->label(2), 'url'=>array('admin')),
);
?>

<h1><?php echo Yii::t('app', 'Update') . ' ' . GxHtml::encode($model->label()) . ' ' . GxHtml::encode(GxHtml::valueEx($model)); ?></h1>

<?php
$this->renderPartial('_form', array(
        'model' => $model));
?>

模型(由 Giix 生成)看起来像: Yii::import('application.models._base.BaseFactsheet');

class Factsheet extends BaseFactsheet
{
    public static function model($className=__CLASS__) {
        return parent::model($className);
    }
}   

模型扩展了基础:抽象类 BaseFactsheet 扩展 GxActiveRecord {

    public static function model($className=__CLASS__) {
        return parent::model($className);
    }

    public function tableName() {
        return 'factsheet';
    }

    public static function label($n = 1) {
        return Yii::t('app', 'Factsheet|Factsheets', $n);
    }

    public static function representingColumn() {
        return 'name';
    }

    public function rules() {
        return array(
            array('name, toolid', 'required'),
            array('weight', 'numerical', 'integerOnly'=>true),
            array('name, toolid', 'length', 'max'=>255),
            array('inputdate', 'safe'),
            array('weight, inputdate', 'default', 'setOnEmpty' => true, 'value' => null),
            array('factsheetid, name, toolid, weight, inputdate', 'safe', 'on'=>'search'),
        );
    }

    public function relations() {
        return array(
            'tool' => array(self::BELONGS_TO, 'Tool', 'toolid'),
            'factsheetcontents' => array(self::HAS_MANY, 'Factsheetcontent', 'factsheetid'),
            'factsheetimages' => array(self::HAS_MANY, 'Factsheetimages', 'factsheetid'),
        );
    }

    public function pivotModels() {
        return array(
        );
    }

    public function attributeLabels() {
        return array(
            'factsheetid' => Yii::t('app', 'Factsheetid'),
            'name' => Yii::t('app', 'Name'),
            'toolid' => null,
            'weight' => Yii::t('app', 'Weight'),
            'inputdate' => Yii::t('app', 'Inputdate'),
            'tool' => null,
            'factsheetcontents' => null,
            'factsheetimages' => null,
        );
    }

    public function search() {
        $criteria = new CDbCriteria;

        $criteria->compare('factsheetid', $this->factsheetid);
        $criteria->compare('name', $this->name, true);
        $criteria->compare('toolid', $this->toolid);
        $criteria->compare('weight', $this->weight);
        $criteria->compare('inputdate', $this->inputdate, true);

        return new CActiveDataProvider($this, array(
            'criteria' => $criteria,
        ));
    }
}

知道如何解决我的问题吗?我已经为 PHP 提供了我所有的系统内存 (memory_init(-1)) 并且刚刚收到堆转储错误。我需要帮助,请告诉我在哪里寻找,因为我对 Yii 完全陌生。

4

1 回答 1

0

您通常会将该错误作为 _form 部分文件的一部分。当 GxHtml 生成下拉菜单时,我经常遇到它。

GiiX 在正确地将所有模型从数据库中拉出并为您的下拉菜单获取适当的键/名称方面效率不高。因此,最好手动指定要检索的字段。

如果您发布您的 _form 代码(或至少相关部分),我们可以指出这一行。

于 2012-04-23T23:30:24.420 回答