1. <tfoot id='2JmtB'></tfoot>
      2. <small id='2JmtB'></small><noframes id='2JmtB'>

      3. <legend id='2JmtB'><style id='2JmtB'><dir id='2JmtB'><q id='2JmtB'></q></dir></style></legend>
        <i id='2JmtB'><tr id='2JmtB'><dt id='2JmtB'><q id='2JmtB'><span id='2JmtB'><b id='2JmtB'><form id='2JmtB'><ins id='2JmtB'></ins><ul id='2JmtB'></ul><sub id='2JmtB'></sub></form><legend id='2JmtB'></legend><bdo id='2JmtB'><pre id='2JmtB'><center id='2JmtB'></center></pre></bdo></b><th id='2JmtB'></th></span></q></dt></tr></i><div id='2JmtB'><tfoot id='2JmtB'></tfoot><dl id='2JmtB'><fieldset id='2JmtB'></fieldset></dl></div>

        • <bdo id='2JmtB'></bdo><ul id='2JmtB'></ul>

        Laravel Eloquent 关于关系的分页

        时间:2023-09-24
      4. <i id='Ad4Th'><tr id='Ad4Th'><dt id='Ad4Th'><q id='Ad4Th'><span id='Ad4Th'><b id='Ad4Th'><form id='Ad4Th'><ins id='Ad4Th'></ins><ul id='Ad4Th'></ul><sub id='Ad4Th'></sub></form><legend id='Ad4Th'></legend><bdo id='Ad4Th'><pre id='Ad4Th'><center id='Ad4Th'></center></pre></bdo></b><th id='Ad4Th'></th></span></q></dt></tr></i><div id='Ad4Th'><tfoot id='Ad4Th'></tfoot><dl id='Ad4Th'><fieldset id='Ad4Th'></fieldset></dl></div>
        <legend id='Ad4Th'><style id='Ad4Th'><dir id='Ad4Th'><q id='Ad4Th'></q></dir></style></legend>

            <tbody id='Ad4Th'></tbody>
          <tfoot id='Ad4Th'></tfoot>
          • <small id='Ad4Th'></small><noframes id='Ad4Th'>

              <bdo id='Ad4Th'></bdo><ul id='Ad4Th'></ul>

                  本文介绍了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 关于关系的分页的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:Laravel - Eloquent - 动态定义的关系 下一篇:使用 Laravel 4 自动生成模型类(也就是使用带有

                  相关文章

                  最新文章

                      <bdo id='j8Aj1'></bdo><ul id='j8Aj1'></ul>

                    1. <legend id='j8Aj1'><style id='j8Aj1'><dir id='j8Aj1'><q id='j8Aj1'></q></dir></style></legend>

                      <tfoot id='j8Aj1'></tfoot>
                    2. <small id='j8Aj1'></small><noframes id='j8Aj1'>

                    3. <i id='j8Aj1'><tr id='j8Aj1'><dt id='j8Aj1'><q id='j8Aj1'><span id='j8Aj1'><b id='j8Aj1'><form id='j8Aj1'><ins id='j8Aj1'></ins><ul id='j8Aj1'></ul><sub id='j8Aj1'></sub></form><legend id='j8Aj1'></legend><bdo id='j8Aj1'><pre id='j8Aj1'><center id='j8Aj1'></center></pre></bdo></b><th id='j8Aj1'></th></span></q></dt></tr></i><div id='j8Aj1'><tfoot id='j8Aj1'></tfoot><dl id='j8Aj1'><fieldset id='j8Aj1'></fieldset></dl></div>