为什么下载PDF的超链接不起作用? (无文件)

时间:2018-10-09 19:42:52

标签: php laravel

我开发了一个用于创建文章的系统,除了标题和内容外,每个帖子都可以上传PDF。文件名存储在数据库中,并写在下载文件所需的超链接上。现在的问题是,当我想要下载文件,它显示浏览器错误。 有人知道有什么问题吗?

数据库

enter image description here

PDF文件的位置

enter image description here

结果

enter image description here

帖子控制器

x

show.blade.php

<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;
//including post model to controller
use App\Post;
//if we want to use sql syntax for queries 
use DB; 

class PostsController extends Controller
{
    /**
     * Display a listing of the resource.
     *
     * @return \Illuminate\Http\Response
     */
    public function index()
    {   
        //list articles by desc row

        $posts= Post::orderby('created_at', 'desc')->paginate(3);
        return view('posts.index')-> with('posts', $posts);
    }

    /**
     * Show the form for creating a new resource.
     *
     * @return \Illuminate\Http\Response
     */
    public function create()
    {
       return view('posts.create');
    }

    /**
     * Store a newly created resource in storage.
     *
     * @param  \Illuminate\Http\Request  $request
     * @return \Illuminate\Http\Response
     */
    public function store(Request $request)
    {   
        $this -> validate($request,[
            'title' => 'required',
            'content' => 'required'

        ]);


     // Handle File Upload
        if($request->hasFile('image')){
            // Get filename with the extension
            $filenameWithExt = $request->file('image')->getClientOriginalName();
            // Get just filename
            $filename = pathinfo($filenameWithExt, PATHINFO_FILENAME);
            // Get just ext
            $extension = $request->file('image')->getClientOriginalExtension();
            // Filename to store
            $fileNameToStore= $filename.'_'.time().'.'.$extension;
            // Upload Image
            $path = $request->file('image')->storeAs('public/upload', $fileNameToStore);
        } else {
            $fileNameToStore = 'noimage.jpg';
        }









        //create new post
        $post= new Post;

        $post -> title = $request -> input('title');
        $post -> content = $request -> input('content');
        $post->file_name = $fileNameToStore;
        $post -> save();


            return redirect('/posts') ->with('success', 'Post Created');



    }

    /**
     * Display the specified resource.
     *
     * @param  int  $id
     * @return \Illuminate\Http\Response
     */
    public function show($id)
    {
        //list post while we enter through link
        $post= Post::find($id);
        return view('posts.show')-> with('post', $post);
    }

    /**
     * Show the form for editing the specified resource.
     *
     * @param  int  $id
     * @return \Illuminate\Http\Response
     */
    public function edit($id)
    {
         $post= Post::find($id);
        return view('posts.edit')-> with('post', $post);
    }

    /**
     * Update the specified resource in storage.
     *
     * @param  \Illuminate\Http\Request  $request
     * @param  int  $id
     * @return \Illuminate\Http\Response
     */
    public function update(Request $request, $id)
    {
            $this -> validate($request,[
            'title' => 'required',
            'content' => 'required'

        ]);
        //create new post
        $post= Post::find($id);
        $post -> title = $request -> input('title');
        $post -> content = $request -> input('content');
        $post -> save();
            return redirect('/posts') ->with('success', 'Post Updated');

    }

    /**
     * Remove the specified resource from storage.
     *
     * @param  int  $id
     * @return \Illuminate\Http\Response
     */
    public function destroy($id)
    {
        $post= Post::find($id);
        $post -> delete();
          return redirect('/posts') ->with('success', 'Post Removed');
    }
}

迁移创建帖子     

@extends('layouts.app')

@section('content')

    <h1>{{$post->title}}</h1>
    <div>
        {{$post->content}}

    </div>      
    <p><a href="./storage/app/public/upload/{{$post->file_name}}" download>Download the pdf</a></p>
    <small>Written on {{$post->created_at}}</small>
     <a href="/posts" class="btn btn-default">Return</a>

@endsection

1 个答案:

答案 0 :(得分:3)

storage/app/public对用户不可见

您需要按照以下说明移至public/...和/或创建符号链接:https://laravel.com/docs/5.7/filesystem#the-public-disk

php artisan storage:link

然后替换

<a href="./storage/app/public/upload/{{$post->file_name}}" download>

使用

<a href="{{asset('storage/upload/'.$post->file_name)}}" download>