我正面临这个问题,我希望在视图上显示pdf文件。我目前遇到的错误是
语法错误意外'?>'
这是我的一些代码
<iframe src="{{URL::to(foldername/#../pathtofile)}} width='400' height='300' allowfullscreen="" webkitallowfullscreen=""></iframe >
答案 0 :(得分:0)
您在src
属性末尾缺少引号,可能导致错误:
<iframe src="{{URL::to(foldername/#../pathtofile)}}" width='400' height='300' allowfullscreen="" webkitallowfullscreen=""></iframe >
希望这有助于你。