gpt4 book ai didi

php - yii2如何在一个模型中使用多个表

转载 作者:行者123 更新时间:2023-11-29 02:16:33 26 4
gpt4 key购买 nike

我有一个产品模型将信息保存到数据库中的产品表,但我的数据库中也有价格表、颜色表和尺码表,在表格上我将通过以下方式获取所有产品信息,包括价格、尺码和颜色产品 Controller 和产品型号,现在我想知道如何在各自的表格中以不同的方式保存表格上的价格、尺寸和颜色。下面是截图

public function actionCreate(){
$data = \Yii::$app->request->post();
$model = new Product();
$model->title = $data['title'];
$model->name = $data['name'];
}

现在如何将此表名称更改为价格或尺寸或颜色以便能够保存 $data['size'] 和 $data['color'] 和 $data['price']到相应的列

最佳答案

一个模型与一个数据库表相关联。

关于处理不同类型的多个模型,官方文档中有一篇很好的文章 - Getting Data for Multiple Models .

省略细节,这里是 Controller 的代码片段:

namespace app\controllers;

use Yii;
use yii\base\Model;
use yii\web\Controller;
use yii\web\NotFoundHttpException;
use app\models\User;
use app\models\Profile;

class UserController extends Controller
{
public function actionUpdate($id)
{
$user = User::findOne($id);
if (!$user) {
throw new NotFoundHttpException("The user was not found.");
}

$profile = Profile::findOne($user->profile_id);

if (!$profile) {
throw new NotFoundHttpException("The user has no profile.");
}

$user->scenario = 'update';
$profile->scenario = 'update';

if ($user->load(Yii::$app->request->post()) && $profile->load(Yii::$app->request->post())) {
$isValid = $user->validate();
$isValid = $profile->validate() && $isValid;
if ($isValid) {
$user->save(false);
$profile->save(false);
return $this->redirect(['user/view', 'id' => $id]);
}
}

return $this->render('update', [
'user' => $user,
'profile' => $profile,
]);
}
}

对于 View :

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

$form = ActiveForm::begin([
'id' => 'user-update-form',
'options' => ['class' => 'form-horizontal'],
]) ?>
<?= $form->field($user, 'username') ?>

...other input fields...

<?= $form->field($profile, 'website') ?>

<?= Html::submitButton('Update', ['class' => 'btn btn-primary']) ?>
<?php ActiveForm::end() ?>

这篇文章也可能有用 - Collecting tabular input .它包括从相同类型的多个模型收集数据。

另请阅读 Models部分,尤其是验证规则大量分配段落。您应该避免那样处理 $_POST 参数。

关于php - yii2如何在一个模型中使用多个表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38689754/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com