如果-6ren">
gpt4 book ai didi

php - 公共(public)路径列出 View 中的所有文件

转载 作者:搜寻专家 更新时间:2023-10-31 21:22:20 25 4
gpt4 key购买 nike

我在我的 View 中嵌入了一个 pdf 文件,就像这样

<embed src = "{{$pdfUrl.$accessProfileDet->server_folder}}" width="100%" height="600px" type="application/pdf">

如果变量 $accessProfileDet->server_folder 有值,它工作正常。 $pdfUrl 是我的公共(public)路径。如果 $accessProfileDet->server_folder 为 null, View 将​​列出公用文件夹中的所有文件。请为此提出任何简单的解决方案。由于我的网站 Logo 、横幅等图像位于公共(public)文件夹中,我不喜欢使用特殊途径来解决此问题,是否有其他解决方案。

最佳答案

Just place a blank html file named 'index.html' in your public folder. This will solve the issue. Also you can avoid embedding the code by an if condition like this,
@if($accessProfileDet->server_folder != '')
<embed src="{{$pdfUrl.$accessProfileDet->server_folder}}" width="100%" height="600px" type="application/pdf">
@else
<div class="no-pdf">No data available!</div>
@endif

关于php - 公共(public)路径列出 View 中的所有文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44106199/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com