App下載

詞條

大約有 7,000 項(xiàng)符合查詢結(jié)果 ,庫內(nèi)數(shù)據(jù)總量為 78,250 項(xiàng)。(搜索耗時(shí):0.0067秒)

5251.Laravel 8 配置

所有的應(yīng)用程序日志系統(tǒng)配置都位于 config/logging.php 配置文件中。這個(gè)文件允許你配置你的應(yīng)用程序日志通道,所以務(wù)必查看每個(gè)可用的通道及它們的選項(xiàng)。當(dāng)然,我們將在下面回顧一些常用的選項(xiàng)。默認(rèn)情況下,Laravel 將使用 s...

http://www.o2fo.com/laravel_8/laravel_8-hfgx3gwk.html

5252.Laravel 8 為通道自定義 Monolog

...Logger 實(shí)例將所有方法調(diào)用代理到基礎(chǔ)的 Monolog 實(shí)例:<?php namespace App\Logging; use Monolog\Formatter\LineFormatter; class CustomizeFormatter { /** * 自定義給定的日志實(shí)例 * * @param \Illuminate\Log\Logger $logger * @return void */ public function __invoke($logger) {...

http://www.o2fo.com/laravel_8/laravel_8-k8vb3gwu.html

5253.Laravel 8 Blade 模板

...vaScript 框架 流程控制 If 語句Switch 語句循環(huán)循環(huán)遍歷注釋PHP@once 指令 表單 CSRF 字段Method 字段驗(yàn)證錯(cuò)誤 組件 組件顯示組件傳參屬性管理插槽內(nèi)聯(lián)組件視圖匿名組件動(dòng)態(tài)組件 引入子視圖 渲染視圖集合 堆棧服務(wù)注入Blade 擴(kuò)展 自定...

http://www.o2fo.com/laravel_8/laravel_8-wtlp3gxo.html

5254.Laravel 8 定義布局

... Blade 布局視圖:<!-- Stored in resources/views/layouts/app.blade.php --> <html> <head> <title>App Name - @yield('title')</title> </head> <body> @section('sidebar') This is the master sidebar. @show <div class="container"> @yield(&...

http://www.o2fo.com/laravel_8/laravel_8-fwqn3gxr.html

5255.Laravel 8 繼承布局

... @yield 指令控制顯示:<!-- Stored in resources/views/child.blade.php --> @extends('layouts.app') @section('title', 'Page Title') @section('sidebar') @parent <p>This is appended to the master sidebar.</p> @endsection @section('content')...

http://www.o2fo.com/laravel_8/laravel_8-xbmq3gxs.html

5256.Laravel 8 顯示非轉(zhuǎn)義字符

默認(rèn)情況下, Blade {{ }} 語句將被 PHP 的 htmlspecialchars 函數(shù)自動(dòng)轉(zhuǎn)義以防范 XSS 攻擊。如果您不想您的數(shù)據(jù)被轉(zhuǎn)義,那么您可使用如下的語法:Hello, {!! $name !!}. 注意:在應(yīng)用中顯示用戶提供的數(shù)據(jù)時(shí)請(qǐng)格外小心,請(qǐng)盡可能的使用轉(zhuǎn)...

http://www.o2fo.com/laravel_8/laravel_8-xeu63gxv.html

5257.Laravel 8 顯示組件

...如,假設(shè)我們有一個(gè)組件位于 App\View\Components\Inputs\Button.php,那么我們可以像這樣渲染它:<x-inputs.button/>Copy

http://www.o2fo.com/laravel_8/laravel_8-dr8n3gye.html

5258.Laravel 8 組件

...make:component 命令將會(huì)把組件置于 App\View\Components 目錄中:php artisan make:component AlertCopymake:component 命令將會(huì)為組件創(chuàng)建一個(gè)視圖模板。創(chuàng)建的視圖被置于 resources/views/components 目錄中。

http://www.o2fo.com/laravel_8/laravel_8-q2of3gyl.html

5259.Laravel 8 生成內(nèi)聯(lián)視圖組件

要?jiǎng)?chuàng)建一個(gè)渲染內(nèi)聯(lián)視圖的組件,您可以在運(yùn)行 make:component 命令時(shí)使用 inline 選項(xiàng):php artisan make:component Alert --inlineCopy

http://www.o2fo.com/laravel_8/laravel_8-8lj53gyv.html

5260.Laravel 8 數(shù)據(jù) / 屬性

...作為數(shù)組值來實(shí)現(xiàn):<!-- /resources/views/components/alert.blade.php --> @props(['type' => 'info', 'message']) <div {{ $attributes->merge(['class' => 'alert alert-'.$type]) }}> {{ $message }} </div>

http://www.o2fo.com/laravel_8/laravel_8-1hgr3gyw.html

抱歉,暫時(shí)沒有相關(guān)的微課

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

抱歉,暫時(shí)沒有相關(guān)的視頻課程

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

抱歉,暫時(shí)沒有相關(guān)的教程

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

5251.Laravel 8 配置

所有的應(yīng)用程序日志系統(tǒng)配置都位于 config/logging.php 配置文件中。這個(gè)文件允許你配置你的應(yīng)用程序日志通道,所以務(wù)必查看每個(gè)可用的通道及它們的選項(xiàng)。當(dāng)然,我們將在下面回顧一些常用的選項(xiàng)。默認(rèn)情況下,Laravel 將使用 s...

http://www.o2fo.com/laravel_8/laravel_8-hfgx3gwk.html

5252.Laravel 8 為通道自定義 Monolog

...Logger 實(shí)例將所有方法調(diào)用代理到基礎(chǔ)的 Monolog 實(shí)例:<?php namespace App\Logging; use Monolog\Formatter\LineFormatter; class CustomizeFormatter { /** * 自定義給定的日志實(shí)例 * * @param \Illuminate\Log\Logger $logger * @return void */ public function __invoke($logger) {...

http://www.o2fo.com/laravel_8/laravel_8-k8vb3gwu.html

5253.Laravel 8 Blade 模板

...vaScript 框架 流程控制 If 語句Switch 語句循環(huán)循環(huán)遍歷注釋PHP@once 指令 表單 CSRF 字段Method 字段驗(yàn)證錯(cuò)誤 組件 組件顯示組件傳參屬性管理插槽內(nèi)聯(lián)組件視圖匿名組件動(dòng)態(tài)組件 引入子視圖 渲染視圖集合 堆棧服務(wù)注入Blade 擴(kuò)展 自定...

http://www.o2fo.com/laravel_8/laravel_8-wtlp3gxo.html

5254.Laravel 8 定義布局

... Blade 布局視圖:<!-- Stored in resources/views/layouts/app.blade.php --> <html> <head> <title>App Name - @yield('title')</title> </head> <body> @section('sidebar') This is the master sidebar. @show <div class="container"> @yield(&...

http://www.o2fo.com/laravel_8/laravel_8-fwqn3gxr.html

5255.Laravel 8 繼承布局

... @yield 指令控制顯示:<!-- Stored in resources/views/child.blade.php --> @extends('layouts.app') @section('title', 'Page Title') @section('sidebar') @parent <p>This is appended to the master sidebar.</p> @endsection @section('content')...

http://www.o2fo.com/laravel_8/laravel_8-xbmq3gxs.html

5256.Laravel 8 顯示非轉(zhuǎn)義字符

默認(rèn)情況下, Blade {{ }} 語句將被 PHP 的 htmlspecialchars 函數(shù)自動(dòng)轉(zhuǎn)義以防范 XSS 攻擊。如果您不想您的數(shù)據(jù)被轉(zhuǎn)義,那么您可使用如下的語法:Hello, {!! $name !!}. 注意:在應(yīng)用中顯示用戶提供的數(shù)據(jù)時(shí)請(qǐng)格外小心,請(qǐng)盡可能的使用轉(zhuǎn)...

http://www.o2fo.com/laravel_8/laravel_8-xeu63gxv.html

5257.Laravel 8 顯示組件

...如,假設(shè)我們有一個(gè)組件位于 App\View\Components\Inputs\Button.php,那么我們可以像這樣渲染它:<x-inputs.button/>Copy

http://www.o2fo.com/laravel_8/laravel_8-dr8n3gye.html

5258.Laravel 8 組件

...make:component 命令將會(huì)把組件置于 App\View\Components 目錄中:php artisan make:component AlertCopymake:component 命令將會(huì)為組件創(chuàng)建一個(gè)視圖模板。創(chuàng)建的視圖被置于 resources/views/components 目錄中。

http://www.o2fo.com/laravel_8/laravel_8-q2of3gyl.html

5259.Laravel 8 生成內(nèi)聯(lián)視圖組件

要?jiǎng)?chuàng)建一個(gè)渲染內(nèi)聯(lián)視圖的組件,您可以在運(yùn)行 make:component 命令時(shí)使用 inline 選項(xiàng):php artisan make:component Alert --inlineCopy

http://www.o2fo.com/laravel_8/laravel_8-8lj53gyv.html

5260.Laravel 8 數(shù)據(jù) / 屬性

...作為數(shù)組值來實(shí)現(xiàn):<!-- /resources/views/components/alert.blade.php --> @props(['type' => 'info', 'message']) <div {{ $attributes->merge(['class' => 'alert alert-'.$type]) }}> {{ $message }} </div>

http://www.o2fo.com/laravel_8/laravel_8-1hgr3gyw.html

抱歉,暫時(shí)沒有相關(guān)的文章

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

熱門課程