【相關推薦:】
composer create-project laravel/laravel 專案資料夾名 --prefer-dist
app
:應用程式的核心程式碼
bootstrap
:一個引導框架的app.php檔案,一個cache目錄(包含路由及快取檔案),框架啟動檔案,一般情況不動。
config
:所有組態檔
database
:其中migrations目錄可以生成資料表。
public
:入口檔案存放地,以及靜態資源(和tp類似)
resources
:
routes
:應用的所有路由定義
tests
:可用來單元測試
vendor
:所有composer依賴包
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/字首,可設定一個路由群組進行新增:
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}}
其中控制器中變數對映有三種:
瞭解一下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方法請參考:資料遷移檔案常用方法速查表
寫好SQL檔案以後,執行:php artisan migrate
將會生成資料表,其中操作紀錄檔將記錄在這個表中:
php artisan migrate:rollback
:回滾最後一次的遷移操作, 刪除(回滾)之後會刪除遷移記錄,並且資料表也會刪除,但是遷移檔案依舊存在,方便後期繼續遷移(建立資料表)。
【相關推薦:】
以上就是歸納整理Laravel基礎知識總結的詳細內容,更多請關注TW511.COM其它相關文章!