本文實例講述了yii2.0框架多模型操作。分享給大家供大家參考,具體如下:
控制器:
?php
namespace app\controllers;
use Yii;
use yii\web\Controller;
use yii\base\Model;
use app\models\shopUsers;
use app\models\shopLeagueInfo;
use yii\web\NotAcceptableHttpException;
class UserController extends Controller
{
public $layout = 'shopUser';
public function actionSave($id)
{
$user = shopUsers::find()->where(['id' => $id])->one();
if (!$user) {
throw new NotAcceptableHttpException('沒有找到用戶信息');
}
$league = shopLeagueInfo::findOne($user->league_id);
if (!$league) {
throw new NotAcceptableHttpException('沒有找到加盟商信息');
}
//model設置
$user->scenario = 'update';
$league->scenario = 'update';
if ($user->load(\Yii::$app->request->post()) $league->load(\Yii::$app->request->post())) {
$isValid = $user->validate();
$isValid = $league->validate() $isValid;
if ($isValid) {
$user->save(false);
$league->save(false);
return $this->redirect(['user/save','id' => $id]);
}
}
return $this->render('save',['user' => $user,'league' => $league]);
}
}
model模型:
?php
namespace app\models;
use yii\db\ActiveRecord;
class shopLeagueInfo extends ActiveRecord
{
public function rules()
{
return [['user_real_name'],'required'];
}
public function table()
{
//
}
public function scenarios()
{
return [
'update' => ['user_phone'],//修改操作,值為表字段
];
}
}
其他表同上。
views視圖
?php
use yii\helpers\Html;
use yii\widgets\ActiveForm;
$model = new app\models\saveForm();
$form = ActiveForm::begin([
'id' => 'save-form',
'options' => ['class' => 'form-horizontal'],
])
?>
?= $form->field($user,'user_real_name')->input('user_real_name') ?>
?= $form->field($league,'user_phone')->input('user_phone') ?>
button>更新/button>
?php ActiveForm::end() ?>
更多關于Yii相關內容感興趣的讀者可查看本站專題:《Yii框架入門及常用技巧總結》、《php優(yōu)秀開發(fā)框架總結》、《smarty模板入門基礎教程》、《php面向對象程序設計入門教程》、《php字符串(string)用法總結》、《php+mysql數(shù)據(jù)庫操作入門教程》及《php常見數(shù)據(jù)庫操作技巧匯總》
希望本文所述對大家基于Yii框架的PHP程序設計有所幫助。
您可能感興趣的文章:- YII2框架中自定義用戶認證模型,完成登陸和注冊操作示例
- Yii2.0框架模型添加/修改/刪除數(shù)據(jù)操作示例
- Yii2.0框架模型多表關聯(lián)查詢示例
- Yii中Model(模型)的創(chuàng)建及使用方法
- yii框架表單模型使用及以數(shù)組形式提交表單數(shù)據(jù)示例
- PHP YII框架開發(fā)小技巧之模型(models)中rules自定義驗證規(guī)則
- PHP的Yii框架中Model模型的學習教程
- Yii框架數(shù)據(jù)模型的驗證規(guī)則rules()被執(zhí)行的方法
- YII動態(tài)模型(動態(tài)表名)支持分析
- Yii框架表單模型和驗證用法
- Yii模型操作之criteria查找數(shù)據(jù)庫的方法
- Yii數(shù)據(jù)模型中rules類驗證器用法分析