1

我正在使用 Yii 2.0 框架,谁能帮我在控制器中编写插入查询,我正在写这样的查询,这是一个正确的查询

$userId = \Yii::$app->user->identity->id;
    $restId = \app\models\Restaurantbusiness::find()->select('restaurentID')->where(['userId' => $userId ])->one(); 
    $restdetailId = $restId->restaurentID;
    $restomenuID = Restomenu::find()->insert('restaurantBusiness_restaurentID')->where(['restaurantBusiness_restaurentID' => $restdetailId])->One();

请帮我编写正确的插入查询。提前致谢

4

1 回答 1

1

好的,我假设没有人知道:-/

我找到了解决方案

根本不需要编写任何插入查询,在保存之前在控制器中我写了这个

$model->restaurantBusiness_restaurentID= $restdetailId;

就这样。

于 2015-07-14T11:14:25.343 回答