我正在尝试将$image
变量传递给我的视图(gallerij.blade.php),但它将不起作用。我收到一条错误消息:“未定义的变量:图像”。我不知道如何解决这个世界。
我已经在Stack Overflow上寻找解决方案,但是找不到答案的解决方案。我还浏览了Laracast网站。但是我在那里找不到答案。最后,我还请一位程序员程序员查看他是否可以找到解决方案,但他也不知道出了什么问题。
我的控制器:
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use App\gallerijs;
class GalerijController extends Controller
{
public function Retrieve(){
$g = gallerijs::find(1);
$image = chunk_split(base64_encode($g->afbeelding));
return view('gallerij ')->with($image);
}
}
我的观点:
@extends ('Layout')
@section('title')
Galerij
@endsection
@section('content')
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
</head>
<body>
<div id="demo" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ul class="carousel-indicators">
<li data-target="#demo" data-slide-to="0" class="active"></li>
<li data-target="#demo" data-slide-to="1"></li>
<li data-target="#demo" data-slide-to="2"></li>
</ul>
<!-- The slideshow -->
<div class="carousel-inner">
<div class="carousel-item active">
<img src="{{asset('Pictures/'.$image)}}" alt="Los Angeles" width="1100" height="500">
</div>
<div class="carousel-item">
<img src="{{asset('Pictures/loremipsum2.jpg')}}" alt="Chicago" width="1100" height="500">
</div>
<div class="carousel-item">
<img src="{{asset('Pictures/loremipsum3.jpg')}}" alt="New York" width="1100" height="500">
</div>
</div>
<!-- Left and right controls -->
<a class="carousel-control-prev" href="#demo" data-slide="prev">
<span class="carousel-control-prev-icon"></span>
</a>
<a class="carousel-control-next" href="#demo" data-slide="next">
<span class="carousel-control-next-icon"></span>
</a>
</div>
</body>
</html>
@endsection
我尝试在第一个img src
中使用该变量。
希望我能给您足够的信息,以便您可以帮助我找到解决方案。
答案 0 :(得分:1)
更改:
fetch
收件人:
return view('gallerij ')->with($image);
我发现这是在保留变量名称的同时将变量传递给视图的最简洁的方法。
您可以使用return view('gallerij ', compact('image'));
,但必须重申变量名称(即:with()
)
或者您可以定义一个变量数组,以作为要查看的第二个参数传递(即:->with('image', $image)
)。
这是紧凑功能派上用场的地方。它将使用变量名作为键从变量名列表中创建一个数组(即:view('view.template', ['image' => $image]
创建compact('image')
)
答案 1 :(得分:0)
请以用户为图像数组 像
public function Retrieve(){
$g = gallerijs::find(1);
$image = chunk_split(base64_encode($g->afbeelding));
return view('gallerij ')->with('image',$image);
}