dtg7662 2015-12-08 10:14
浏览 100
已采纳

Laravel - 如果模型/行不存在或软删除则显示异常

Lets say i have a model called "Manufacturer" with a controller which has a show method

public function show($id)
{
    $manufacturer = json_decode( $this->manufacturer->find($id) );
    return view('viewManufacturer', compact('manufacturer'));
}

And a Eloquent-repository with a find method

public function find($id)
{
    return Manufacturer::find($id)->toJson();
}

Now if a model doesn't exist or is softdeleted it gives me a fatal exception

FatalErrorException in ManufacturerRepository.php line 22:
Call to a member function toJson() on null

How do i set an exception, so instead of the default error page it shows a custom error page with something like, "Manufacturer not found".

EDIT: Well i actually tried that, but it returns an error. The above mentioned query was just for demonstration, in actual i have another model called vehicle. And Manufacturer has one to many relationship with Vehicle.

public function find($id, $columns1 = array('*'), $columns2 = array('*'))
{
    return Manufacturer::with(['vehicles' => function($q) use ($columns2){
           $q->select($columns2);
    }])->get($columns1)->find($id)->toJson();
}

So if i replace find with findOrFail it spits an error saying Call to undefined method Illuminate\Database\Eloquent\Collection::findOrFail()

  • 写回答

2条回答 默认 最新

  • doujingxi3356 2015-12-08 11:15
    关注

    Instead of find() method call findOrFail() - if the model is not found this method will throw ModelNotFoundException which should result in 404 page in your application.

    UPDATE:

    In your second example replace:

    return Manufacturer::with(['vehicles' => function($q) use ($columns2){
      $q->select($columns2);
    }])->get($columns1)->find($id)->toJson();
    

    with

    return Manufacturer::with(['vehicles' => function($q) use ($columns2){
      $q->select($columns2);
    }])->findOrFail($id, $columns1)->toJson();
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 python的qt5界面
  • ¥15 无线电能传输系统MATLAB仿真问题
  • ¥50 如何用脚本实现输入法的热键设置
  • ¥20 我想使用一些网络协议或者部分协议也行,主要想实现类似于traceroute的一定步长内的路由拓扑功能
  • ¥30 深度学习,前后端连接
  • ¥15 孟德尔随机化结果不一致
  • ¥15 apm2.8飞控罗盘bad health,加速度计校准失败
  • ¥15 求解O-S方程的特征值问题给出边界层布拉休斯平行流的中性曲线
  • ¥15 谁有desed数据集呀
  • ¥20 手写数字识别运行c仿真时,程序报错错误代码sim211-100