首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
社区首页 >问答首页 >方法App\Http\Controller\Elibrary::save不存在

方法App\Http\Controller\Elibrary::save不存在
EN

Stack Overflow用户
提问于 2019-11-04 16:05:23
回答 2查看 1.5K关注 0票数 1

我试着制作pdf文件库。其中我想存储的pdf标题和文件名也上传此pdf在项目存储。但是服务器告诉我这个错误,我不明白我能做什么。

方法App\Http\Controller\Elibrary::save不存在。我的错误信息这是我的图书馆控制器文件,我把文件名和存储文件名存储在数据库中,也存储在public/images位置

我在这个链接uload文件教程上找到了这段代码

代码语言:javascript
运行
复制
       <?php

namespace App\Http\Controllers;
use Illuminate\Http\Request;
use App\Http\Controllers\Controller;
use App\Elibrary;
class ElibraryController extends Controller
{
    /**
     * Display a listing of the resource.
     *
     * @return \Illuminate\Http\Response
     */
    public function index(Request $request){
        $elibrary = Elibrary::orderBy('id','DESC')->paginate(5);
        return view('e-library',compact('elibrary'))
            ->with('i', ($request->input('page', 1) - 1) * 5);
    }

    /**
     * Show the form for creating a new resource.
     *
     * @return \Illuminate\Http\Response
     */
    public function 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',
            'efile' => 'required|max:4000',
        ]);
        if($file= $request->file('file')){
            $name = $file->getClientOriginalName();
            if($file->move('images', $name)){
                $elibrary = new Post;
                $elibrary->efile = $name;
                $elibrary->save();
                return redirect()->route('e-library');
            };
        }
        $elibrary = new Elibrary([
            'title'    =>  $request->get('title'),
            'efile'    =>  $request->file('file'),
            ]);
        $elibrary->save();
        return redirect()->route('e-library');
    }

    /**
     * Display the specified resource.
     *
     * @param  int  $id
     * @return \Illuminate\Http\Response
     */
    public function show($id)
    {
        //
    }

    /**
     * Show the form for editing the specified resource.
     *
     * @param  int  $id
     * @return \Illuminate\Http\Response
     */
    public function edit($id)
    {
        //
    }

    /**
     * Update the specified resource in storage.
     *
     * @param  \Illuminate\Http\Request  $request
     * @param  int  $id
     * @return \Illuminate\Http\Response
     */
    public function update(Request $request, $id)
    {
        //
    }

    /**
     * Remove the specified resource from storage.
     *
     * @param  int  $id
     * @return \Illuminate\Http\Response
     */
    public function destroy($id)
    {
        //
    }
}

这是我的路线文件代码

代码语言:javascript
运行
复制
Route::post('/store', 'Elibrary@store')->name('store');

这是电子图书.blde.php文件

代码语言:javascript
运行
复制
<form action="/store" method="post" enctype="multipart/form-data">
                @csrf()
                  <div class="form-group">
                     <input type="text" class="form-control"name="title" placeholder="Name">
                  </div>
                  <div class="form-group">
                     <input type="file" class="form-control"name="efile" >
                  </div>
                  <div class="form-group">
                     <input type="submit" class="btn btn-primary btn-send-message" >
                  </div>
               </form>

这是我的Elibrary.php模型文件

代码语言:javascript
运行
复制
    <?php

namespace App;

use Illuminate\Database\Eloquent\Model;

class Elibrary extends Model
{
    public $fillable = ['title','efile'];
}

这是我的迁移文件

代码语言:javascript
运行
复制
<?php

use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;

class CreateElibrariesTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('elibraries', function (Blueprint $table) {
           $table->bigIncrements('id');
            $table->string('title');
            $table->string('efile');
            $table->timestamps();
        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::dropIfExists('elibraries');
    }
}

如何使用show.blade.php中的帮助显示函数显示这个pdf

EN

回答 2

Stack Overflow用户

回答已采纳

发布于 2019-11-04 16:56:17

您正在控制器方法中创建Elibrary的新实例。Elibrary是一个控制器类,但它看起来像一个模型。

也许可以尝试将所有的new Elibrary()更改为new Post,因为这看起来可能是您要完成的任务。

如果是这样的话,您还需要在您的efile模型中填充Post

票数 2
EN

Stack Overflow用户

发布于 2019-11-04 17:02:16

代码语言:javascript
运行
复制
$elibrary = Post::orderBy('id','DESC')->paginate(5);
票数 -1
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/58697078

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档