yii2源碼學習筆記(十二)

来源:http://www.cnblogs.com/dragon16/archive/2016/06/06/5564064.html
-Advertisement-
Play Games

繼續瞭解controller基類。 ...


繼續瞭解controller基類。

    /**
     * Runs a request specified in terms of a route.在路徑中指定的請求。
     * The route can be either an ID of an action within this controller or a complete route consisting
     * of module IDs, controller ID and action ID. If the route starts with a slash '/', the parsing of
     * the route will start from the application; otherwise, it will start from the parent module of this controller.
     * 該路徑可以是控制器內的一個動作的標識,或由模塊標識、控制器標識和動作標識組成的一個完整路徑。
     * 如果該路徑從一個“/”開始,該路徑的解析將從應用程式開始;否則,它將從該控制器的父模塊開始。
     * @param string $route the route to be handled, e.g., 'view', 'comment/view', '/admin/comment/view'.
     * @param array $params the parameters to be passed to the action.
     * @return mixed the result of the action.
     * @see runAction()
     */
    public function run($route, $params = [])
    {
        $pos = strpos($route, '/');
        if ($pos === false) {//判斷是否以“/”開始 是則解析從應用程式開始;否則,它將從該控制器的父模塊開始。
            return $this->runAction($route, $params);
        } elseif ($pos > 0) {
            return $this->module->runAction($route, $params);
        } else {
            return Yii::$app->runAction(ltrim($route, '/'), $params);
        }
    }

    /**
     * Binds the parameters to the action.將參數綁定到動作標識。
     * This method is invoked by [[Action]] when it begins to run with the given parameters.
     * 運行給定的參數時,該方法被調用。
     * @param Action $action the action to be bound with parameters.參數約束的操作。
     * @param array $params the parameters to be bound to the action.要約束的參數。
     * @return array the valid parameters that the action can run with.可以運行的有效參數。
     */
    public function bindActionParams($action, $params)
    {
        return [];
    }

    /**
     * Creates an action based on the given action ID. 根據給定的操作標識創建一個action。
     * The method first checks if the action ID has been declared in [[actions()]]. If so,
     * it will use the configuration declared there to create the action object.
     * If not, it will look for a controller method whose name is in the format of `actionXyz`
     * where `Xyz` stands for the action ID. If found, an [[InlineAction]] representing that
     * method will be created and returned.
     * 該方法首先檢查動作標識是否在 [[actions()]]設置,如果是將使用配置聲明來創建操作對象。
     * 如果不是,它會尋找控制器方法`Xyz` 的 `actionXyz`作為動作標識,調用[[InlineAction]]方法創建對象
     * @param string $id the action ID. 
     * @return Action the newly created action instance. Null if the ID doesn't resolve into any action.
     */
    public function createAction($id)
    {
        if ($id === '') {
             // 如果action的id為空,就是用預設的action
            $id = $this->defaultAction;
        }

        $actionMap = $this->actions();// 獲取actions方法中的定義的actionMap
        if (isset($actionMap[$id])) {
             // 如果操作標識在actionMap中,就去創建這個action
            return Yii::createObject($actionMap[$id], [$id, $this]);
        } elseif (preg_match('/^[a-z0-9\\-_]+$/', $id) && strpos($id, '--') === false && trim($id, '-') === $id) {
             // 如果id符合命名規範,而且兩邊不存在-
            // 用於拼接controller類名類似的方法拼接action方法的名稱
            $methodName = 'action' . str_replace(' ', '', ucwords(implode(' ', explode('-', $id))));
            if (method_exists($this, $methodName)) {
                // 如果方法存在,就實例化
                $method = new \ReflectionMethod($this, $methodName);
                if ($method->isPublic() && $method->getName() === $methodName) {
                    // 如果方法是public的,就new一個InlineAction返回
                    return new InlineAction($id, $this, $methodName);
                }
            }
        }

        return null;
    }

    /**
     * This method is invoked right before an action is executed.
     * 在執行操作之前調用此方法。
     * The method will trigger the [[EVENT_BEFORE_ACTION]] event. The return value of the method
     * will determine whether the action should continue to run.
     * 方法將觸發 [[EVENT_BEFORE_ACTION]] 事件,返回值確定該操作是否執行
     * If you override this method, your code should look like the following:
     *
     * ```php
     * public function beforeAction($action)
     * {
     *     if (parent::beforeAction($action)) {
     *         // your custom code here
     *         return true;  // or false if needed
     *     } else {
     *         return false;
     *     }
     * }
     * ```
     *
     * @param Action $action the action to be executed. 執行的操作
     * @return boolean whether the action should continue to run.確定操作是否應該繼續運行。
     */
    public function beforeAction($action)
    {
        $event = new ActionEvent($action);
        $this->trigger(self::EVENT_BEFORE_ACTION, $event);
        return $event->isValid;
    }

    /**
     * This method is invoked right after an action is executed.
     * 在執行操作之後調用此方法。
     * The method will trigger the [[EVENT_AFTER_ACTION]] event. The return value of the method
     * will be used as the action return value.
     *
     * If you override this method, your code should look like the following:
     *
     * ```php
     * public function afterAction($action, $result)
     * {
     *     $result = parent::afterAction($action, $result);
     *     // your custom code here
     *     return $result;
     * }
     * ```
     *
     * @param Action $action the action just executed. 剛剛執行的操作。
     * @param mixed $result the action return result. 操作返回值
     * @return mixed the processed action result. 處理結果。
     */
    public function afterAction($action, $result)
    {
        $event = new ActionEvent($action);
        $event->result = $result;
        $this->trigger(self::EVENT_AFTER_ACTION, $event);
        return $event->result;
    }

    /**
     * Returns all ancestor modules of this controller. 獲取當前控制器所有的父模塊
     * The first module in the array is the outermost one (i.e., the application instance),
     * while the last is the innermost one.
     * 數組中的第一個模塊是最外層的一個,最後一個模塊是最內層的。
     * @return Module[] all ancestor modules that this controller is located within.當前控制器所有的父模塊
     */
    public function getModules()
    {
        // 當前controller的module組成的數組
        $modules = [$this->module];
        $module = $this->module;
        while ($module->module !== null) {
             // 將外面的module插入到modules數組的開頭
            array_unshift($modules, $module->module);
            $module = $module->module;
        }
        return $modules;
    }

    /**
     * @return string the controller ID that is prefixed with the module ID (if any).
     * 返回控制器id
     */
    public function getUniqueId()
    {
        //如果當前所屬模塊為application,則就為當前id,否則要面要加上模塊id
        return $this->module instanceof Application ? $this->id : $this->module->getUniqueId() . '/' . $this->id;
    }

    /**
     * Returns the route of the current request.    獲取預設請求的路由信息
     * @return string the route (module ID, controller ID and action ID) of the current request. 
     * 當前請求的路由(模塊標識、控制器標識和操作標識)
     */
    public function getRoute()
    {
        return $this->action !== null ? $this->action->getUniqueId() : $this->getUniqueId();
    }

    /**
     * Renders a view and applies layout if available.
     * 如果有佈局渲染視圖文件和佈局文件
     * The view to be rendered can be specified in one of the following formats:
     *
     * - path alias (e.g. "@app/views/site/index");
     * - absolute path within application (e.g. "//site/index"): the view name starts with double slashes.
     *   The actual view file will be looked for under the [[Application::viewPath|view path]] of the application.
     * - absolute path within module (e.g. "/site/index"): the view name starts with a single slash.
     *   The actual view file will be looked for under the [[Module::viewPath|view path]] of [[module]].
     * - relative path (e.g. "index"): the actual view file will be looked for under [[viewPath]].
     *
     * To determine which layout should be applied, the following two steps are conducted:
     * 確定應用佈局文件類型的步驟:
     * 1. In the first step, it determines the layout name and the context module:
     * 首先確定佈局文件名和背景模塊
     * - If [[layout]] is specified as a string, use it as the layout name and [[module]] as the context module;
     * - If [[layout]] is null, search through all ancestor modules of this controller and find the first
     *   module whose [[Module::layout|layout]] is not null. The layout and the corresponding module
     *   are used as the layout name and the context module, respectively. If such a module is not found
     *   or the corresponding layout is not a string, it will return false, meaning no applicable layout.
     *   如果佈局文件是字元串,也就是設置佈局文件,則直接調用。 如果沒有設置佈局文件,則查找所有的父模塊的佈局文件。
     * 2. In the second step, it determines the actual layout file according to the previously found layout name
     *    and context module. The layout name can be:
     *    應用下的佈局文件,以“/”開頭,這個會從應用程式的佈局文件目錄下麵查找佈局文件
     * - a path alias (e.g. "@app/views/layouts/main");
     * - an absolute path (e.g. "/main"): the layout name starts with a slash. The actual layout file will be
     *   looked for under the [[Application::layoutPath|layout path]] of the application;
     * - a relative path (e.g. "main"): the actual layout file will be looked for under the
     *   [[Module::layoutPath|layout path]] of the context module.
     *
     * If the layout name does not contain a file extension, it will use the default one `.php`.
     * 如果佈局文件沒有擴展名,則預設為.php
     * @param string $view the view name.
     * @param array $params the parameters (name-value pairs) that should be made available in the view.
     * These parameters will not be available in the layout.
     * @return string the rendering result.
     * @throws InvalidParamException if the view file or the layout file does not exist.
     */
    public function render($view, $params = [])
    {
        //由view對象渲染視圖文件
        $content = $this->getView()->render($view, $params, $this);
        return $this->renderContent($content);//渲染佈局文件
    }

    /**
     * Renders a static string by applying a layout.    配合render方法渲染佈局文件
     * @param string $content the static string being rendered  被渲染的靜態字元串
     * @return string the rendering result of the layout with the given static string as the `$content` variable.
     * If the layout is disabled, the string will be returned back.
     * 以給定的靜態字元串作為“$content”變數佈局的渲染結果。如果佈局被禁用,將返回該字元串。
     * @since 2.0.1
     */
    public function renderContent($content)
    {
        $layoutFile = $this->findLayoutFile($this->getView()); //查找佈局文件
        if ($layoutFile !== false) {//由view對象渲染佈局文件,並把上視圖結果作為content變數傳遞到佈局中,
            return $this->getView()->renderFile($layoutFile, ['content' => $content], $this);
        } else {
            return $content;
        }
    }

    /**
     * Renders a view without applying layout.渲染視圖文件不應用佈局
     * This method differs from [[render()]] in that it does not apply any layout.
     * 這種方法不同於[[render()]],它不使用任何佈局。
     * @param string $view the view name. Please refer to [[render()]] on how to specify a view name.
     * 視圖名稱。根據[[render()]]指定一個視圖名稱。
     * @param array $params the parameters (name-value pairs) that should be made available in the view.
     * 在視圖中提供的參數(name-value pairs)
     * @return string the rendering result.渲染結果。
     * @throws InvalidParamException if the view file does not exist.如果視圖文件不存在,拋出異常
     */
    public function renderPartial($view, $params = [])
    {
        return $this->getView()->render($view, $params, $this);
    }

    /**
     * Renders a view file. 渲染一個文件
     * @param string $file the view file to be rendered. This can be either a file path or a path alias.
     * 要呈現的視圖文件。可以是一個文件路徑或路徑別名。
     * @param array $params the parameters (name-value pairs) that should be made available in the view.
     * 在視圖中提供的參數(name-value pairs)
     * @return string the rendering result.渲染結果
     * @throws InvalidParamException if the view file does not exist.如果視圖文件不存在,拋出異常
     */
    public function renderFile($file, $params = [])
    {
        return $this->getView()->renderFile($file, $params, $this);
    }

    /**
     * Returns the view object that can be used to render views or view files.
     * 返回渲染視圖或視圖文件的view對象。
     * The [[render()]], [[renderPartial()]] and [[renderFile()]] methods will use
     * this view object to implement the actual view rendering.
     * [[render()]], [[renderPartial()]] and [[renderFile()]] 方法將使用視圖對象實現視圖顯示。
     * If not set, it will default to the "view" application component.如果未設置,則預設為“view”應用程式組件。
     * @return View|\yii\web\View the view object that can be used to render views or view files.
     * 渲染視圖或視圖文件的view對象。
     */
    public function getView()
    {
        if ($this->_view === null) {
            $this->_view = Yii::$app->getView();
        }
        return $this->_view;
    }

    /**
     * Sets the view object to be used by this controller.
     * @param View|\yii\web\View $view the view object that can be used to render views or view files.
     */
    public function setView($view)
    {
        $this->_view = $view;
    }

    /**
     * Returns the directory containing view files for this controller.返回該控制器包含視圖文件的目錄。
     * The default implementation returns the directory named as controller [[id]] under the [[module]]'s
     * [[viewPath]] directory.預設返回目錄命名為控制器[[id]] 下的 [[module]]的[[viewPath]]目錄。
     * @return string the directory containing the view files for this controller.
     * 包含此控制器的視圖文件的目錄。
     */
    public function getViewPath()
    {
        return $this->module->getViewPath() . DIRECTORY_SEPARATOR . $this->id;
    }

    /**
     * Finds the applicable layout file.查找適用的佈局文件。
     * @param View $view the view object to render the layout file.呈現佈局文件視圖對象。
     * @return string|boolean the layout file path, or false if layout is not needed.
     * Please refer to [[render()]] on how to specify this parameter.
     * 佈局文件路徑,或者不需要佈局。參閱[[render()]]如何指定此參數。
     * @throws InvalidParamException if an invalid path alias is used to specify the layout.
     * 如果使用了無效的路徑別名指定佈局。拋出異常
     */
    public function findLayoutFile($view)
    {
        $module = $this->module;
        if (is_string($this->layout)) {
             //如果當前控制器設置了佈局文件,則直接使用所設置的佈局文件
            $layout = $this->layout;
        } elseif ($this->layout === null) {
             //如果沒有設置佈局文件,查找所有的父模塊的佈局文件。
            while ($module !== null && $module->layout === null) {
                $module = $module->module;
            }
            if ($module !== null && is_string($module->layout)) {
                $layout = $module->layout;
            }
        }

        if (!isset($layout)) {
            return false;//如果沒有設置佈局文件,返回false
        }

        if (strncmp($layout, '@', 1) === 0) {
            $file = Yii::getAlias($layout);//以“@”開頭,會在別名路徑中查找佈局文件
        } elseif (strncmp($layout, '/', 1) === 0) {//以“/”開頭,會從應用程式的佈局文件目錄下麵查找佈局文件
            $file = Yii::$app->getLayoutPath() . DIRECTORY_SEPARATOR . substr($layout, 1);
        } else {//從當前模塊的佈局文件目錄下查找佈局文件
            $file = $module->getLayoutPath() . DIRECTORY_SEPARATOR . $layout;
        }

        if (pathinfo($file, PATHINFO_EXTENSION) !== '') {
            return $file;//如果佈局文件有文件擴展名,返迴文件
        }
        $path = $file . '.' . $view->defaultExtension;//拼接預設的文件擴展名。
        if ($view->defaultExtension !== 'php' && !is_file($path)) {
            $path = $file . '.php';//如果文件不存在,並且,預設的文件擴展名也不是php,則加上.php作為擴展名。
        }

        return $path;
    }

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • Here is my directory structure: -/path/to/folder/run.py -|app -|__init__.py -|views.py -|templates -|static Contents of /path/to/folder/run.py if __na ...
  • python3批量刪除豆瓣分組下的好友 ...
  • 寫了一個簡單的JMS例子,之所以使用JNDI 是出於通用性考慮,該例子使用JMS規範提供的通用介面,沒有使用具體JMS提供者的介面,這樣可以保證我們編寫的程式適用於任何一種JMS實現(ActiveMQ、HornetQ...)。 什麼是JNDI JNDI(Java Naming and Directo ...
  • 兩個線程操作同一個資源,比如,輸入和輸出,操作同一個對象,此時兩個線程會爭奪cpu的執行權,隨機的進行切換。我們想實現先輸入再輸出,順序的執行 目標對象定義一個標記欄位,進行判斷,wait()和notify()方法 wait()方法,線程會處於等待狀態,等待的線程位於記憶體中的線程池中 notify( ...
  • 對自己定義的類規範化一下,事件和圖形化組件分離出來 定義一個類FrameDemo 定義成員屬性Frame frame 定義成員屬性Botton 定義構造方法FrameDemo() 定義初始化方法init() 初始化方法中,new出來Frame(),參數:String的窗體名稱 調用Frame對象的s ...
  • switch允許對一個標量(表達式)的多個可能結果做選擇。 語法: 系統計算expr的值,根據計算結果(result1、result2等)來選擇下麵對應執行語句,如果所有的case結果都不符合,則會執行default里的語句。 例子: 運行 提示 可以有多個 case 條件判斷 case 後面結果也 ...
  • 我們在中級篇中學會瞭如何進行反向解析,但是有這樣一個問題,在為 url 命名的時候,名字不能重覆,否則會導致各種各樣的問題。在 url 還少的時候保證不重名還是比較簡單的,但是 url 多起來以後就比較難了。為瞭解決這樣的問題,可以在 url 中加一個首碼。例如,我有一個 url 的名字叫做 'co ...
  • 輸入輸出流 1. 用控制符輸出格式,例: 控制符用法列表如下: 2. 用流對象cout中用於控制輸出格式的成員函數來控制輸出格式 例如: cout.setf(iso::showbase) cout.setf(iOS::oct) cout.width(10) cout.setf(ios::intern ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...