91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Laravel 7中Blade組件有哪些

發布時間:2021-03-17 10:09:58 來源:億速云 閱讀:155 作者:小新 欄目:編程語言

這篇文章主要介紹Laravel 7中Blade組件有哪些,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

表單按鈕

開發一個應用時,如果您希望重定向并且做一些其他操作時,不能使用簡單的鏈接。GET 請求很容易受到 CSRF 攻擊。

相反,您應該使用其他 HTTP 請求方式,使用表單和 CSRF 驗證。 下面是一個在表單中生成按鈕的 FormButton 組件。

{{-- content of formButton.blade.php --}}
<form method="POST" action="{{ $action }}">
    @csrf
    @method($method ?? 'POST')
        <button
            type="submit"
            class="{{ $class ?? '' }}"
        >
            {{ $slot }}
        </button>
</form>

您可以像這樣使用它:

// perform an action
<x-form-button :action="route('doSomething')">
   Do something
</x-form-button>
// perform an action with another HTTP verb
<x-form-button :action="route('model.delete', $model)" method="delete">
   Delete model
</x-form-button>

導航欄

幾乎任何應用程序都需要顯示某種導航,比如菜單和選項卡。這些導航鏈接是動態的,這樣用戶就可以知道自己在應用程序的哪個部分。

下面是可以展示鏈接的 navigationLink 組件。當其以當前請求的 URL 開始時,它會自動將自身設置為活動狀態。

{{-- content of navigationLink.blade.php --}}
<li class="{{ \Illuminate\Support\Str::startsWith(request()->url(), $href) ? 'active' : ''  }}">
    <a href="{{ $href }}" @isset($dataDirtyWarn) data-dirty-warn @endisset>
        {{ $slot }}
    </a>
</li>

這里是如何在 mailcoach.app 中使用它的。

 <nav class="tabs">
        <ul>
            <x-navigation-item :href="route('mailcoach.emailLists.subscribers', $emailList)">
                <x-icon-label icon="fa-users" text="Subscribers" :count="$emailList->subscribers()->count() ?? 0" />
            </x-navigation-item>
            <x-navigation-item :href="route('mailcoach.emailLists.tags', $emailList)">
                <x-icon-label icon="fa-tag" text="Tags" />
            </x-navigation-item>
            <x-navigation-item :href="route('mailcoach.emailLists.segments', $emailList)">
                <x-icon-label icon="fa-chart-pie" text="Segments" />
            </x-navigation-item>
            <x-navigation-item :href="route('mailcoach.emailLists.settings', $emailList)">
                <x-icon-label icon="fa-cog" text="Settings" />
            </x-navigation-item>
        </ul>
    </nav>

這就是渲染的方法。

表單元素

Blade 組件會渲染出自適應的表單元素。我們來看一下 textField 組件在 Mailcoach 中的用法。

<div class="form-row">
    @if($label ?? null)
    <label class="{{ ($required ?? false) ? 'label label-required' : 'label' }}" for="{{ $name }}">
        {{ $label }}
    </label>
    @endif
    @error($name)
        <p class="form-error" role="alert">{{ $message }}</p>
    @enderror
    <input
        autocomplete="off"
        type="{{ $type ?? 'text' }}"
        name="{{ $name }}"
        id="{{ $name }}"
        class="input"
        placeholder="{{ $placeholder ?? '' }}"
        value="{{ old($name, $value ?? '') }}"
        {{ ($required ?? false) ? 'required' : '' }}
    >
</div>

正如你所看到的一樣,它渲染了標簽、表單字段和可能的錯誤。這就是它的用法。

<x-text-field label="Name" name="name" required />

以上是“Laravel 7中Blade組件有哪些”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

鹤庆县| 河间市| 南平市| 隆回县| 子洲县| 介休市| 庆云县| 特克斯县| 建始县| 繁峙县| 遂平县| 芦山县| 房山区| 湾仔区| 慈溪市| 宜都市| 镇远县| 泸州市| 贡觉县| 汉中市| 五指山市| 黄大仙区| 页游| 平利县| 玉屏| 尉犁县| 南投县| 岗巴县| 衡东县| 拜城县| 寻乌县| 西乌| 漳州市| 庆城县| 庆云县| 铜川市| 锦州市| 鱼台县| 南木林县| 汉阴县| 晴隆县|