Laravel Eloquent pagination on relationships(Laravel Eloquent 关于关系的分页)
问题描述
我正在尝试为这样的 Eloquent 关系分页:
I am trying to paginate a Eloquent relationship like this:
$query = Product::find(1)->options()->paginate();
但我收到以下错误:
Fatal error: Call to a member function getCurrentPage() on a non-object
我已经确认代码 $query = Product::find(1)->options()
返回一个选项集合.$query
对象似乎是 hasMany
类型.以下是我正在使用的模型类.
I have confirmed that the code $query = Product::find(1)->options()
returns a collection of options. The $query
object seems to be of type hasMany
. Below are the model classes I am using.
class Product extends Eloquent
{
protected $table = 'products';
public function options ()
{
return $this->hasMany('ProductOption', 'product_id');
}
}
class ProductOption extends Eloquent
{
protected $table = 'product_options';
public function product()
{
return $this->belongsTo('Product', 'product_id');
}
}
eloquent 不返回关系的分页结果吗?
Does eloquent not return paginated results for relationships?
推荐答案
你不能像这样延迟加载关系分页,而是在你的产品模型中把以下函数放在你的选项下面有很多关系
You can not lazy load relational pagination like that, instead in your Product Model put the following function below your options has many relationship
public function getOptionsPaginatedAttribute()
{
return $this->options()->paginate(10);
}
这将允许您通过
$product->options_paginated
这篇关于Laravel Eloquent 关于关系的分页的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Laravel Eloquent 关于关系的分页
基础教程推荐
- 使用 PDO 转义列名 2021-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- HTTP 与 FTP 上传 2021-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- PHP 守护进程/worker 环境 2022-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01