我对Laravel 5 Route Model Binding有一个问题 我使用以下控制器方法
public function destroy(PrimaryLocation $primaryLocation) {
dd($primaryLocation->id);
$primaryLocation->delete();
return redirect()->back()->with('locationDeleted', true);
}
其中PrimaryLocation是一个雄辩的模型
我的RouteServiceProvider的启动功能:
public function boot(Router $router)
{
parent::boot($router);
$router->model('user', 'App\User');
$router->model('PrimaryLocation', 'App\PrimaryLocation');
}
在我的routes.php中
Route::delete('deletePrimaryLocation/{PrimaryLocation}',
['as' => 'admin.deletePrimaryLocation', 'uses' => 'LocationsController@destroy']);
此设置在我的本地计算机上运行正常,但是当我将文件部署到我的开发服务器时,模型绑定会破坏; 在执行该方法时,该位置不会被删除。
我做了一些var_dumps
dd($primaryLocation->id);
在本地计算机上,它返回正确的ID,但在服务器上它将返回 只返回null;
但是,如果我做了
dd($primaryLocation)
结果是本地的
PrimaryLocation {#178 ▼
#fillable: array:1 [▶]
#connection: null
#table: null
#primaryKey: "id"
#perPage: 15
+incrementing: true
+timestamps: true
#attributes: array:4 [▶]
#original: array:4 [▶]
#relations: []
#hidden: []
#visible: []
#appends: []
#guarded: array:1 [▶]
#dates: []
#casts: []
#touches: []
#observables: []
#with: []
#morphClass: null
+exists: true
}
在我的服务器上几乎相同......但缺少属性:
PrimaryLocation {#195 ▼
#fillable: array:1 [▶]
#connection: null
#table: null
#primaryKey: "id"
#perPage: 15
+incrementing: true
+timestamps: true
#attributes: []
#original: []
#relations: []
#hidden: []
#visible: []
#appends: []
#guarded: array:1 [▶]
#dates: []
#casts: []
#touches: []
#observables: []
#with: []
#morphClass: null
+exists: false
}
有没有人知道可能出错的地方?
[UPDATE]
如果我发表评论
// $router->model('PrimaryLocation', 'App\PrimaryLocation');
在我的ServiceProvider中,本地行为与服务器上的行为相同。 加载ServiceProvider可能有问题吗?也许有某种缓存?
答案 0 :(得分:10)
在经历同样的问题之后,我发现在制作中,storage/framework/compiled.php
并不像开发模式那样定期重建。
基本上,您只是在生产服务器上运行旧版本的RoutesServiceProvider.php。
虽然修复很容易。只需运行php artisan clear-compiled
。
将线路添加到任何部署脚本也是一种很好的做法。
答案 1 :(得分:-1)
只需将此行添加到serviceProvider :: boot()
即可 $router->model('attribute', Attribute::class);