您好,登錄后才能下訂單哦!
這篇文章主要介紹“Laravel基礎知識有哪些”的相關知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“Laravel基礎知識有哪些”文章能幫助大家解決問題。
composer create-project laravel/laravel 項目文件夾名 --prefer-dist
app
:應用程序的核心代碼
bootstrap
:一個引導框架的app.php文件,一個cache目錄(包含路由及緩存文件),框架啟動文件,一般情況不動。
config
:所有配置文件
database
:其中migrations目錄可以生成數據表。
public
:入口文件存放地,以及靜態資源(和tp類似)
resources
:
routes
:應用的所有路由定義
tests
:可用來單元測試
vendor
:所有composer依賴包
Route::get( u r l , url, url,callback);
Route::post( u r l , url, url,callback);
Route::put( u r l , url, url,callback);
Route::delete( u r l , url, url,callback);
Route::match(['get','post'],'/',function(){});
Route::any('/home', function () { });
Route::get('/home/{id}', function ($id) { echo 'id為:'.$id;});
Route::get('/home/{id?}', function ($id = '') { echo 'id為:'.$id;});
Route::get('/home', function () { echo 'id為:'.$_GET['id'];});
Route::any('/home/index', function () { echo '測試';})->name('hh');
例如有如下路由:
/admin/login
/admin/index
/admin/logout
/admin/add
如果一個一個添加是比較麻煩的,他們有一個共同的區別,都是有/admin/前綴,可設置一個路由群組進行添加:
Route::group(['prefix'=>'admin'], function () { Route::get('test1', function () { echo 'test1'; }); Route::get('test2', function () { echo 'test2'; });});
此時就可通過/admin/test1來進行訪問了。
控制器可以建一個前臺和一個后臺:
命令行創建路由:
php artisan make:controller Admin/IndexController
基本路由建立:
Route::get('test/index','TestController@index');
分目錄路由建立:
Route::get('/admin/index/index','Admin\IndexController@index');
引入:use Illuminate\Support\Facades\Validator
$param = $request->all();$rule = [ 'name'=>'required|max:2',];$message = [ 'required' => ':attribute不能為空', 'max' => ':attribute長度最大為2'];$replace = [ 'name' => '姓名',];$validator = Validator::make($param, $rule, $message,$replace);if ($validator->fails()){ return response()->json(['status'=>0,'msg'=>$validator->errors()->first()]);}
在控制器中如果要使用一個類,例如use Illuminate\Http\Request
,就可以簡寫為use Request
。
但是需要在config目錄下的app.php配置文件中加入:
'aliases' => [ 'App' => Illuminate\Support\Facades\App::class, 'Arr' => Illuminate\Support\Arr::class, 'Artisan' => Illuminate\Support\Facades\Artisan::class, 'Auth' => Illuminate\Support\Facades\Auth::class, 'Blade' => Illuminate\Support\Facades\Blade::class, 'Request' => Illuminate\Support\Facades\Request::class, ],
Input::get('id')
Input::all()
打印出來的是數組
關于dd(dump+die)
Input::only(['id','name'] //只接收id,其余不接受
Input::except(['name'] //不接收name,其余都接收
Input::has('name') //存在返回true 不存在返回false 其中0返回true
視圖也可分目錄管理:
控制器語法:
return view('home/test');
也可寫為:
return view('home.test');
控制器中:
return view('home/test',['day'=>time()]);
視圖中:
{{$day}}
其中控制器中變量映射有三種:
view(模板文件,數組)
view(模板文件)->with(數組)
view(模板文件)->with(數組)->with(數組)
了解一下compact數組。
控制器中:
public function index(){ $arr = [ 0 => [ 'name' => 'tom', 'age' => '12', ], 1 => [ 'name' => 'bby', 'age' => '13', ] ]; return view('home/test',['data'=>$arr]); }
視圖中:
@foreach($data as $k=>$v) 鍵:{{$k}} 值:{{$v['name']}} <br/>@endforeach
@if(1==2) 是的 @else 不是的 @endif
@include('welcome')
php artisan make:model Model/Admin/Member
此時,就會在app目錄內創建:
<?phpnamespace App\Model\Admin;use Illuminate\Database\Eloquent\Model;class Member extends Model{ //定義表名 protected $table = 'student'; //定義主鍵 protected $primaryKey = 'id'; //定義禁止操作時間 public $timestamps = false; //設置允許寫入的字段 protected $fillable = ['id','sname'];}
方式一:
$model = new Member(); $model->sname = '勒布朗'; $res = $model->save(); dd($res);
方式二:
$model = new Member(); $res = $model->create($request->all()); dd($res);
//查詢客戶與銷售顧問的客資列表$data = Custinfo::select(['custinfo.*', 'customers.name']) ->join('customers', 'customers.id', '=', 'custinfo.cust_id') ->where($where) ->get() ->toArray();
<?phpnamespace App\Model\Admin;use Illuminate\Database\Eloquent\Model;class Phone extends Model{ //定義表名 protected $table = 'phone'; //定義主鍵 protected $primaryKey = 'id'; //定義禁止操作時間 public $timestamps = false; //設置允許寫入的字段 protected $fillable = ['id','uid','phone'];}
<?phpnamespace App\Model\Admin;use Illuminate\Database\Eloquent\Model;class Member extends Model{ //定義表名 protected $table = 'student'; //定義主鍵 protected $primaryKey = 'id'; //定義禁止操作時間 public $timestamps = false; //設置允許寫入的字段 protected $fillable = ['id','sname']; /** * 獲取與用戶關聯的電話號碼記錄。 */ public function getPhone() { return $this->hasOne('App\Model\Admin\Phone', 'uid', 'id'); }}
//對象轉數組 public function Arr($obj) { return json_decode(json_encode($obj), true); } public function index(){ $infoObj = Member::with('getPhone')->get(); $infoArr = $this->Arr($infoObj); print_r($infoArr); }
在config
目錄下的logging.php
中的channels
配置:
'custom' => [ 'driver' => 'single', 'path' => storage_path('logs/1laravel.log'), 'level' => 'debug', ]
控制器中:
$message = ['joytom','rocker'];Log::channel('custom')->info($message);
建立一個遷移文件:php artisan make:migration create_shcool_table
會在database\migrations
下創建一個文件:
在up方法中增加如下代碼:
<?phpuse Illuminate\Database\Migrations\Migration;use Illuminate\Database\Schema\Blueprint;use Illuminate\Support\Facades\Schema;class CreateShcoolTable extends Migration{ /** * Run the migrations. * * @return void */ public function up() { Schema::create('shcool', function (Blueprint $table) { $table->bigIncrements('id'); $table->string('school_name','20')->notNull()->unique(); $table->tinyInteger('status')->default(1); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('shcool'); }}
寫好SQL文件以后,執行:php artisan migrate
將會生成數據表,其中操作日志將記錄在這個表中:
php artisan migrate:rollback
:回滾最后一次的遷移操作, 刪除(回滾)之后會刪除遷移記錄,并且數據表也會刪除,但是遷移文件依舊存在,方便后期繼續遷移(創建數據表)。
關于“Laravel基礎知識有哪些”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識,可以關注億速云行業資訊頻道,小編每天都會為大家更新不同的知識點。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。