Laravel - 使用@section动态设置元标记

时间:2015-12-19 06:50:26

标签: php laravel laravel-blade

我想实现Facebook分享按钮功能,在用户点击分享按钮时,它会捕获元标记信息。

我有一个head.blade.php,其中包含一些要捕获的元标记。实施例

<meta property="og:url" content="@yield('facebook_share_url')">
<meta property="og:image" content="@yield('facebook_share_image')">
<meta property="og:description" content="@yield('facebook_share_description')">

我有一个default.blade.php。

<!doctype html>
<html>
<head>
    @include('includes.head')
</head>
<body>
<div class="container">

    <header class="row">
        @include('includes.header')
    </header>

    <div id="main" class="row">
        @yield('content')
    </div>
</div>

@include('includes.footer')
</body>
</html>

因此,当我浏览一些网址www.example.com/details时,default.blade.php将从此details.blade中获取内容。此时我想更改facebook元标记属性,所以我在详细信息页面中执行了类似下面的操作。

@section('facebook_share_image', 'This is a description')
@section('facebook_share_description', 'This is an individual page title')

代码工作正常,但我想从我的视图数据中呈现它。像@section('facebook_share_description', {{ $data->description }})

这样的东西

但是当我检查我的元标记时,它什么也没给我。是否可以这样做?

1 个答案:

答案 0 :(得分:6)

我不确定这是您想要的还是您想要的,但为什么不尝试仅将meta标签放在 default.blade.php 中而不是放置它是部分的。

例如,插入default.blade.php的head标记:

@yield('facebook_meta')

<强> view_file.blade.php

@section('facebook_meta')
    <meta property="og:url" content="Place your data here">
    <meta property="og:image" content="Place your data here">
    <meta property="og:description" content="Place your data here">
@endsection

根据我的说法,上述方法的效果要好得多。

也许这可以帮助你。