0

在刀片中,我有一个书籍清单。我想选择一本特定的书来显示它的信息。为此,我想通过路由将书的 id 与 href 一起发送到我的控制器。

例如我有

 <div class="body text-center">
 <a href="{{HERE!}}"><h6><b>{{($book->getName())}}</b></h6></a>
 </div> 

在 href 我想添加 $bookId = $book->id 和路由名称,以便我可以使用特定名称调用路由,该名称调用控制器中可以使用变量 $bookId 的方法

 Route::get('/infromation','Books\BookController@index')->name('info');
4

2 回答 2

0

你可以这样尝试

    <form action="/BookName/information/<?php echo $book->id; ?>" method="post">
      <div class="body text-center">
       <input type="hidden" name="book_id" value="{{ $book->id }}">
       <a href="/information/<?php echo $book->id; ?>">
          <button type="submit" name="book_information" class="btn btn-primary"> 
            <h6>
              <b>{{($book->getName())}}</b> 
            </h6>
         </button>
     </div>

   </form> 

    // make route like this
    Route::post('/BookName/information/{id}','Books\BookController@index');

    // Access the that id in controller
    public function index(Request $request)
    {
        echo $request->book_id;
    }
于 2020-01-12T14:46:37.007 回答
0

这里有两个提议:

  • 第一个是使用spatie/laravel-sluggable在 URL 中添加书名
  • 第二种是在不更改 URL 的情况下通过 POST 请求访问图书

使用spatie/laravel-sluggable

slug 将name在书籍创建时自动生成。

你的迁移.php

 Schema::create('books', function (Blueprint $table) {
    $table->bigIncrements('id');
    $table->string('slug')->unique()->index();
    $table->string('name');
    // ...
    $table->timestamps();
});

网页.php

// Change the URIs as you want. `{book}` is mandatory to retrieve the book though.
Route::get('/books','Books\BookController@index')->name('book.index');
Route::get('/books/{book}','Books\BookController@show')->name('book.show');

书本.php

use Spatie\Sluggable\HasSlug;
use Spatie\Sluggable\SlugOptions;

class Book extends Model
{
    use HasSlug;

    protected $guarded = [];

    public function getSlugOptions()
    {
        // Adapt with what you want
        return SlugOptions::create()
            ->generateSlugsFrom('name')
            ->saveSlugsTo('slug')
            ->doNotGenerateSlugsOnUpdate();
    }

    public function getRouteKeyName()
    {
        return 'slug';
    }

}

BookController.php

class BookController extends Controller
{
    public function index()
    {
        return view('book.index');
    }

    public function show(Book $book)
    {
        // $book is retrieving using Model Binding: https://laravel.com/docs/5.8/routing#route-model-binding 
        return view('book.show', compact('book'));
    }
}

index.blade.php

<div class="body text-center">
    <a href="{{ route('book.show', $book) }}">
        <h6><b>{{ $book->getName() }}</b></h6>
    </a>
</div> 

使用 POST 请求(URI 不变)且没有 SLUG

我不建议将其用于用户体验。

  • 用户不能为图书添加书签或与其他人共享链接
  • 刷新页面时,会提示用户是否要重新提交表单请求

网页.php

Route::get('/books','Books\BookController@index')->name('book.index');
Route::post('/books','Books\BookController@show')->name('book.show');

BookController.php

class BookController extends Controller
{
    public function index()
    {
        return view('book.index');
    }

    public function show()
    {
        $book = Book::findOrFail(request('book_id'));
        return view('book.show', compact('book'));
    }
}

index.blade.php

<div class="body text-center">
    <form action="{{ route('book.show') }}" method="POST">
        @csrf
        <input type="hidden" value="{{ $book->id }}" name="book_id">
        <h6>
            <button type="submit"> 
                <b>{{ $book->getName() }}</b>
            </button>
        </h6>
    </form>
</div> 

您可以删除默认按钮样式,使其看起来像一个链接 https://stackoverflow.com/a/45890842/8068675

于 2020-01-12T15:46:51.730 回答