码迷,mamicode.com
首页 > 其他好文 > 详细

yii save model return id null

时间:2014-07-18 08:35:27      阅读:250      评论:0      收藏:0      [点我收藏+]

标签:blog   os   数据   io   for   cti   

    /**
     * Creates a new model.
     * If creation is successful, the browser will be redirected to the ‘view‘ page.
     */
    public function actionCreate()
    {
        $news=new News;
        $news_item = new NewsItem;
        $news->item = $news_item;
        // Uncomment the following line if AJAX validation is needed
        // $this->performAjaxValidation($news);
        if (isset($_POST[‘News‘])) {
            $news->attributes=$_POST[‘News‘];
            if ($news->save()) {
                $_POST[‘NewsItem‘][‘header_id‘] = $news->id; 
                $news_item->attributes=$_POST[‘NewsItem‘];
                if ($news_item->save()) {
                    $this->redirect(array(‘view‘,‘id‘=>$news->id));
                }
                else {
                    $news->deleteByPk($news->id);
                    $this->redirect(array(‘admin‘));
                }
            }
        }
        $this->render(‘create‘,array(
            ‘model‘=>$news,
        ));
    }

原来不是别的bug,因为 数据库中没有设置 id主键为 autoincrement

yii save model return id null,布布扣,bubuko.com

yii save model return id null

标签:blog   os   数据   io   for   cti   

原文地址:http://www.cnblogs.com/phpgcs/p/yii-save-model-return-null-id.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!