Laravel 命名空間

Laravel 命名空間

命名空間用于各種編程語(yǔ)言,以創(chuàng)建一組獨(dú)立的變量,函數(shù)和類。程序可能包含各種功能,這可能會(huì)導(dǎo)致與現(xiàn)有功能發(fā)生沖突。命名空間在避免這種沖突方面起著關(guān)鍵作用。本章將為您提供有關(guān)Laravel中名稱空間及其用法的詳細(xì)知識(shí)。

 

命名空間的聲明

命名空間可以被定義為一個(gè)元素類,其中每個(gè)元素對(duì)該相關(guān)類具有唯一的名稱。它可能與其他類中的元素共享。

您可以聲明一個(gè)名稱空間,如下面的語(yǔ)法所示 -

use <namespace-name>;</namespace-name>

請(qǐng)注意, use 關(guān)鍵字允許開(kāi)發(fā)人員縮短命名空間。Laravel中使用的默認(rèn)名稱空間是 應(yīng)用程序 ,但用戶可以更改名稱空間以與Web應(yīng)用程序匹配。

您可以使用 artisan 命令創(chuàng)建用戶定義的命名空間,如下所示 -

php artisan app:name CodingDict

在給出上述命令時(shí),您可以觀察輸出,如以下屏幕截圖所示 -

命名空間一旦創(chuàng)建就可以包含可用于控制器和各種類的各種功能。下面顯示了基于控制器和內(nèi)核中名稱空間創(chuàng)建的代碼,其中包括 app / console / kernel.php 和 app / Http / controller.php 文件 -

Kernel.php

 namespace CodingDict\Console;

use Illuminate\Console\Scheduling\Schedule;
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;

class Kernel extends ConsoleKernel{

   /**
      * The Artisan commands provided by your application.
      *
      * @var array
   */

   protected $commands = [
    //
   ];

   /**
      * Define the application's command schedule.
      *
      * @param \Illuminate\Console\Scheduling\Schedule $schedule
      * @return void
   */

   protected function schedule(Schedule $schedule){
      // $schedule--->command('inspire')
      // ->hourly();
   }

   /**
      * Register the Closure based commands for the application.
      *
      * @return void
   */

   protected function commands(){
      require base_path('routes/console.php');
   }
}

請(qǐng)注意,日程和命令等功能有助于調(diào)度 Cron 作業(yè)和其他功能的方法。

Controller.php這樣

namespace CodingDict\Http\Controllers;

use Illuminate\Foundation\Bus\DispatchesJobs;
use Illuminate\Routing\Controller as BaseController;
use Illuminate\Foundation\Validation\ValidatesRequests;
use Illuminate\Foundation\Auth\Access\AuthorizesRequests;

class Controller extends BaseController{
   use AuthorizesRequests, DispatchesJobs, ValidatesRequests;
}

控制者充當(dāng)模型和視圖之間的中介。對(duì)于我們創(chuàng)建的稱為 CodingDict 的命名空間,它們將用于控制器 controller.php的 核心文件中。命名空間使用 Http \ Controllers 正確初始化。

命名空間一旦創(chuàng)建,就會(huì)使用上面代碼中提到的各種其他命名空間,如 AuthorizesRequests,DispatchesJobs 和 ValidatesRequests 。

 

使用關(guān)鍵字

命名空間發(fā)生在當(dāng)前類的位置。正如我們的例子中所提到的,我們已經(jīng)將CodingDict聲明為我們的名稱空間,并且它位于 app 文件夾中。聲明的命名空間將是 App \ Tutorialpoint 。無(wú)論何時(shí)您想使用該類,都應(yīng)該使用use關(guān)鍵字。

此處顯示使用 use 關(guān)鍵字的語(yǔ)法-

use CodingDict\Http\Controllers\Controller;

下一節(jié):Laravel 控制器

Laravel 教程

相關(guān)文章
亚洲国产精品第一区二区,久久免费视频77,99V久久综合狠狠综合久久,国产免费久久九九免费视频