Laravel 5:路由绑定返回空对象

时间:2015-06-24 23:43:46

标签: object laravel binding model routes

我正在尝试让绑定工作(在youtube上的tutorial之后)。在这一点上,我基本上是复制粘贴代码;但它似乎没有用。

这是routes.php:

Route::model('song', 'App\Song');

Route::get('songs', 'SongsController@index');
Route::get('songs/{slug}', 'SongsController@show');
Route::get('songs/{slug}/edit', 'SongsController@edit');
Route::patch('songs/{slug}', 'SongsController@update');

Song.php:

<?php
namespace App;

use Illuminate\Database\Eloquent\Model as Eloquent;

class Song extends Eloquent {

    protected $fillable = [
        'title', 'lyrics'
    ];
}

和SongsController.php:

<?php

namespace App\Http\Controllers;

use Illuminate\Routing\Controller;
use Illuminate\Http\Request;

use App\Http\Requests;

use App\Song;

class SongsController extends Controller
{
    public function index(Song $song) {

        $songs = $song->get();

        return view('songs.index', compact('songs'));
    }

    public function show(Song $song) {

        return view('songs.show', compact('song'));
    }

    public function edit($slug) {

        $song = Song::whereSlug($slug)->first();
        return view('songs.edit', compact('song'));
    }

    public function update($slug, Request $request) {

        $song = Song::whereSlug($slug)->first();
        $song->fill($request->input())->save();

        return redirect('songs');
    }
}

我故意将$slug而不是Song $song留在editupdate中,因为这就是问题所在。 如果我理解正确,我应该能够在所有4种方法中访问$ song对象(假设所有这些方法中的第一个参数都是Song $song);但是,只有在index方法的情况下,我才能从数据库中获取任何内容。其他人只给我一个(某种)空对象。这是dd($song)函数中调用的show(URI为http://localhost:8000/songs/boyfriendhttp://localhost:8000/songs/1 - 无论使用Route::bind而不是{{1},都会导致相同的输出如下所述):

Route::model

数据库中的条目存在;修补匠:

Song {#144 ▼
  #fillable: array:2 [▶]
  #connection: null
  #table: null
  #primaryKey: "id"
  #perPage: 15
  +incrementing: true
  +timestamps: true
  #attributes: []
  #original: []
  #relations: []
  #hidden: []
  #visible: []
  #appends: []
  #guarded: array:1 [▶]
  #dates: []
  #dateFormat: null
  #casts: []
  #touches: []
  #observables: []
  #with: []
  #morphClass: null
  +exists: false
}

方法>>> App\Song::whereSlug('boyfriend')->first(); => <App\Song #000000005ba18d590000000003230878> { id: 1, title: "Boyfriend", (...) edit完美无缺(除非我尝试删除update并输入$slug作为第一个参数)。

我尝试了updating the $compiledPathSong $songclear-compiled,重启了十亿次;我还尝试用

替换cache:clear
Route::model
Route::bind('song', function($slug) { return App\Song::whereSlug($slug)->first(); }); 文件中的

(使用routes.php语法也是如此)。我正在使用XAMPP和PHP 5.6.8,项目通过$router->bind开始,而php artisan servephp artisan --version

我在Route :: bind中尝试了dd($ slug) - 它什么也没做(好像它不在那里),与Laravel Framework version 5.1.2 (LTS)findOrFail相同;但是,将firstOrFail放在blah!之前会导致return,因此函数似乎会被调用。我在这里缺少什么?

这是一个错误吗?这应该正常吗?

1 个答案:

答案 0 :(得分:6)

您似乎已绑定到song,但在routes.php中,您将占位符设为slug。您需要将其更改为song

Route::get('songs', 'SongsController@index');
Route::get('songs/{song}', 'SongsController@show');
Route::get('songs/{song}/edit', 'SongsController@edit');
Route::patch('songs/{song}', 'SongsController@update');