Laravel 8 視圖堆棧

2021-07-17 16:52 更新

Blade 允許您將視圖推送到堆棧中,它們可以在其他視圖或布局中進行渲染。這在子視圖中需要指定 JavaScript 庫時非常有用:

@push('scripts')
    <script src="/example.js"></script>
@endpush

您亦可按需進行多次推送。請 @stack 指令來完整堆棧內(nèi)容的渲染:

<head>
    <!-- Head Contents -->

    @stack('scripts')
</head>

如果您想要預置內(nèi)容于棧頂,您可以使用 @prepend 指令:

@push('scripts')
    This will be second...
@endpush

// Later...

@prepend('scripts')
    This will be first...
@endprepend
以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號