繁体   English   中英

如何在 Codeigniter 4 中的单个 controller 中访问两个不同的 model?

[英]how to access two different model in single controller in Codeigniter 4?

我是 Codeigniter 4 的新手,所以我在问这个问题。

实际上,我有两个不同的模型。

首先是 tbl_user。

里面有很多字段 tbl_user(id, name,duty_station,enlistment_date,dob) // 这里 id 是主键。

其次是用户界面。

usermos 有四个字段 [id, user_id, mos_id, additional_mos_id] //这里id是主键,user_id是tbl_user的外键

我已经生成了 get_profile 的 controller ...

我想将usermos model 访问到get_profile controller。

以下是我的代码

标题

<?php namespace App\Controllers;

use CodeIgniter\RESTful\ResourceController;
use App\Models\MosModel;
use App\Models\Additional_mosModel;
use App\Models\Api_auth_model;
use App\Models\Api_Usermos_Model;

Controller

public function get_profile()
    {
     
      if (($this->request->getMethod() == 'post') && ($_SERVER['PHP_AUTH_USER'] == AUTHUSER_NAME) && ($_SERVER['PHP_AUTH_PW'] == AUTH_PASSWORD)) {
        if(!empty($this->request->getPost('id'))){

          $user_api_mos_model = new Api_Usermos_Model();
        $usermos = $this->user_api_mos_model->findAll();
           print_r($usermos);
           exit;
        if($profile){
          if($usermos){
          
          }
          $selected_mos = $this->getMosFromID($usermos[0]['mos_id']);
         
          $selected_add_mos = $this->getAdd_MosFromID($usermos[0]['additional_mos_id']);
          $profile['badge'] = $this->getBadgeFromID($profile['badge_id']);
          // exit;
          return $this->respond([
            "status" => "Success",
            "message" => "Profile found.",
            "Common" => ["Title" => "Load Profile API", 'version' => '1.0', 'Description' => 'Load Profile API', 'Method' => 'POST'],
            "Response" => ["Userdata" => $profile,"mos" => $selected_mos,"additonal_mos" => $selected_add_mos]
          ]);
        }else{
          return $this->respond([
            "status" => "Fail",
            "message" => "Profile Not found.",
            "Common" => ["Title" => "Load Profile API", 'version' => '1.0', 'Description' => 'Load Profile API', 'Method' => 'POST'],
            "Response" => ["Value" => 'Profile Not found.']
          ]);
        }
      }
    }
  }

感谢您宝贵的时间。

只需在 controller 页面 header 部分的顶部定义 model 的命名空间,并在该 Z594C108AB03F2C6E1E04 页面中使用。 例如:

<?php namespace App\Controllers;
 
use  app\models\User;
use app\models\Usermos;

Class UserController extend controller {
    public function actionProfile (){

      $user = new User();
      $user_mos = new Usermos();
   }
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM