我刚开始从laracasts学习laravel,但是welcome.blade.php
页面出了问题。
我试图开始新项目,但结果没有改变。不知何故,浏览器将laravel代码(@ ...)视为html。
我在这段视频中意识到了这个问题 - https://laracasts.com/series/laravel-from-scratch-2017/episodes/5。当我试图回声时
<h1>Hello, <?php echo $name ?><h1>
并在web.php页面中完全像杰弗里所说
Route::get('/', function() {
return view('Welcome', [
name=>'World'
]);
});
我仍然得到未定义的值错误。我是否需要更改某些内容或有没有办法重新安装laravel?
请参阅screenshot。
这是welcome.blade.php的默认页面代码 - 我没有触及任何内容。
<!doctype html>
<html lang="{{ app()->getLocale() }}">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Laravel</title>
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css?family=Raleway:100,600" rel="stylesheet" type="text/css">
<!-- Styles -->
<style>
html, body {
background-color: #fff;
color: #636b6f;
font-family: 'Raleway', sans-serif;
font-weight: 100;
height: 100vh;
margin: 0;
}
.full-height {
height: 100vh;
}
.flex-center {
align-items: center;
display: flex;
justify-content: center;
}
.position-ref {
position: relative;
}
.top-right {
position: absolute;
right: 10px;
top: 18px;
}
.content {
text-align: center;
}
.title {
font-size: 84px;
}
.links > a {
color: #636b6f;
padding: 0 25px;
font-size: 12px;
font-weight: 600;
letter-spacing: .1rem;
text-decoration: none;
text-transform: uppercase;
}
.m-b-md {
margin-bottom: 30px;
}
</style>
</head>
<body>
<div class="flex-center position-ref full-height">
@if (Route::has('login'))
<div class="top-right links">
@auth
<a href="{{ url('/home') }}">Home</a>
@else
<a href="{{ route('login') }}">Login</a>
<a href="{{ route('register') }}">Register</a>
@endauth
</div>
@endif
<div class="content">
<div class="title m-b-md">
Laravel
</div>
<div class="links">
<a href="https://laravel.com/docs">Documentation</a>
<a href="https://laracasts.com">Laracasts</a>
<a href="https://laravel-news.com">News</a>
<a href="https://forge.laravel.com">Forge</a>
<a href="https://github.com/laravel/laravel">GitHub</a>
</div>
</div>
</div>
</body>
</html>
答案 0 :(得分:1)
使用刀片语法,双花括号如下:
{{ $name }}
同时从return语句中删除双分号。
答案 1 :(得分:1)
从屏幕截图来看,URL表明这些页面不是由HTTP服务器提供的。确保您从HTTP服务器提供所有php源。您可以通过运行:
来使用Laravel的简单服务器php artisan serve
您可以在http://localhost:8000
上访问您的作品。
我还请您注意您的欢迎路线定义。鉴于您的文件是welcome.blade.php
。我相信它应该是这样的:
Route::get('/', function() {
return view('welcome', [
'name' => 'World'
]);
});