dongxing2263 2015-06-04 15:08
浏览 141
已采纳

Laravel Blade在<body>中渲染<head>内容

I need a little help here...

When I try to render a simple template in blade, I get a bad rendered html.

I have master.blade.php and home.blade.php inside views.admin directory.

<!-- master.blade.php -->
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="utf-8"/>
  <title>Test Title</title>
</head>
<body>
  Content
</body>
</html>

<!-- home.blade.php -->
@extends('admin.master')

The rendered HTML when I call return view("admin.home"); looks like this:

<html lang="en">
<head></head>
<body>
<meta charset="utf-8">
<title>Test Title</title>
Content
</body></html>

Any ideas of what is happening?

Thanks.

  • 写回答

4条回答 默认 最新

  • dqbhdsec59405 2015-06-04 15:24
    关注

    Usually the case for the "&#65279;" character appearing is that it has been introduced by using a non UTF-8 encoded text editor or was introduced in a different way. My suggestion would be to use something like Sublime Text or Notepad++ to create fresh versions of each of these three documents. This usually happens because of a copy/paste without realizing it or using a text editor that has "extra formatting" that you cannot see (e.g. Word). The character is ZERO WIDTH NO-BREAK SPACE (you can see more information here). So, it's not a Laravel Blade issue, it's that extra whitespace-type characters are being introduced by whichever text editor you're using.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(3条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部