主頁 > 知識庫 > yii2.0框架多模型操作示例【添加/修改/刪除】

yii2.0框架多模型操作示例【添加/修改/刪除】

熱門標簽:濟源百應電銷機器人聯(lián)系方式 辦理400電話哪家好點 南京3D地圖標注 嘟嘟云外呼系統(tǒng) 正規(guī)電銷機器人系統(tǒng) 重慶外呼電銷系統(tǒng)多少錢 南寧電話外呼系統(tǒng)線路 邢臺400電話辦理 咸陽電銷

本文實例講述了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類驗證器用法分析

標簽:河南 武漢 隴南 通遼 南通 唐山 平頂山 黃山

巨人網(wǎng)絡通訊聲明:本文標題《yii2.0框架多模型操作示例【添加/修改/刪除】》,本文關鍵詞  yii2.0,框架,多,模型,操作,;如發(fā)現(xiàn)本文內容存在版權問題,煩請?zhí)峁┫嚓P信息告之我們,我們將及時溝通與處理。本站內容系統(tǒng)采集于網(wǎng)絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《yii2.0框架多模型操作示例【添加/修改/刪除】》相關的同類信息!
  • 本頁收集關于yii2.0框架多模型操作示例【添加/修改/刪除】的相關信息資訊供網(wǎng)民參考!
  • 推薦文章