douxin8383 2016-06-28 08:31
浏览 61
已采纳

无法在Yii中的连接表中插入记录

I'm new to Yii2. I've three tables project, amenity and a junction table project_amenity, and here is the code:

Project Model:

<?php
namespace app\models;
use yii\db\ActiveRecord;

class Project extends \yii\db\ActiveRecord
{
    public function getAmenities()
    {
        return $this->hasMany(Amenity::className(), ['id' => 'amenity_id'])->viaTable('project_amenity', ['project_id' => 'id']);
    }

    public function rules()
    {
        return [
            [['name', 'city'], 'required'],
        ];
    }
}

Amenity Model:

<?php
namespace app\models;
use yii\db\ActiveRecord;

class Amenity extends \yii\db\ActiveRecord
{
    public function getProjects()
    {
        return $this->hasMany(Project::className(), ['id' => 'project_id'])->viaTable('project_amenity', ['amenity_id' => 'id']);
    }
}

ProjectController:

<?php

namespace app\controllers;

use Yii;
use yii\filters\AccessControl;
use yii\web\Controller;
use app\models\Project;
use app\models\Amenity;
use yii\helpers\ArrayHelper;
class ProjectController extends Controller
{
    public function actionCreate()
    {
        $project = new Project;
        $amenities = ArrayHelper::map(Amenity::find()->all(), 'id', 'name');

        if ($project->load(Yii::$app->request->post()) && $project->save()) {
            return $this->render(['confirm', 'id' => $project->id]);
        } else {
            return $this->render('create', [
                'project' => $project, 'amenities' => $amenities
            ]);
        }
    }
}

And here is the Incomplete create view:

<?php
use yii\helpers\Html;
use yii\widgets\LinkPager;
use yii\widgets\ActiveForm;

?>
<?php $form = ActiveForm::begin(); ?>
    <table class="table">
        <tr>
            <td><?= $form->field($project, 'name'); ?></td>
        </tr>
        <tr>
            <td ><?= $form->field($project, 'city'); ?></td>
        </tr>
        <tr>
            <td><?= Html::submitButton('Submit', ['class' => 'btn btn-primary']) ?></td>
        </tr>
    </table>

<?php ActiveForm::end(); ?>

ProjectAmenity Junction Model

<?php
namespace app\models;
use yii\db\ActiveRecord;

class ProjectAmenity extends \yii\db\ActiveRecord
{
    public static function tableName()
    {
        return 'project_amenity';
    }
    public function rules()
    {
        return [
            [['project_id', 'amenity_id'], 'required']
        ];
    }
}
?>

I'am able to display the relational data but not able to insert. Please suggest how to display the amenity checkboxes on create view and and how to insert the data in project and project_amenity table from the create view.

  • 写回答

2条回答 默认 最新

  • duanba4942 2016-06-28 10:02
    关注

    Add amenities property to your project model:

    public $amenities;
    

    Add a checkboxlist to your view:

    <?= $form->field($project, 'amenities')->checkboxList($amenities) ?>
    

    Create junction model if not already exists.

    Loop through input in create action after save:

    if ($project->load(Yii::$app->request->post()) && $project->save()) {
        // checkboxlist fills amenities property with corresponding keys
        foreach($project->amenities as $amenity_key) {
            $project_amenity = new ProjectAmenity([
                'project_id' => $project->id,
                'amenity_id' => $amenity_key
            ]);
            $project_amenity->save();
        }
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 请问各位,如何在Jetson nano主控板的Ubuntu系统中安装PyQt5
  • ¥15 MAC安装佳能LBP2900驱动的网盘提取码
  • ¥400 微信停车小程序谁懂的来
  • ¥15 ATAC测序到底用什么peak文件做Diffbind差异分析
  • ¥15 安装ubantu过程中第一个vfat 文件挂载失败
  • ¥20 GZ::CTF如何兼容一些靶机?
  • ¥15 etcd集群部署问题
  • ¥20 谁可以帮我一下问一下各位
  • ¥15 为何重叠加权后love图的SMD与svyCreateTableOne函数绘制基线表的不一致
  • ¥150 求 《小魔指》街机游戏机整合模拟软件