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

    <tfoot id='DEwZw'></tfoot>
    1. <small id='DEwZw'></small><noframes id='DEwZw'>

      1. 来自自引用表的 Laravel ORM 获取 N 级层次结构 JSON

        Laravel ORM from self referencing table get N level hierarchy JSON(来自自引用表的 Laravel ORM 获取 N 级层次结构 JSON)

          <tbody id='zv0wH'></tbody>
        <tfoot id='zv0wH'></tfoot>

              • <bdo id='zv0wH'></bdo><ul id='zv0wH'></ul>

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

                  <small id='zv0wH'></small><noframes id='zv0wH'>

                  本文介绍了来自自引用表的 Laravel ORM 获取 N 级层次结构 JSON的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我正在使用 LARAVEL 4MySQL 后端.

                  I am using LARAVEL 4 with MySQL back-end.

                  我有一个 self-referencing 表,其中包含 id、name、typeparent 列.这里,parentId 列的foreign-key.表中数据如下:

                  I have a self-referencing table with columns id, name, type and parent. Here, parent is foreign-key of the column Id. The data in table is as below :

                  id  name          type         parent 
                  1   General       group        NULL
                  2   What is..?    question     1
                  3   aa            answer       2
                  4   bb            answer       2
                  5   cc            answer       2
                  6   How is..?     question     1
                  7   ba            answer       6
                  8   bb            answer       6
                  9   Where is..?   question     4
                  10  ca            answer       9
                  11  cb            answer       9
                  12  Who is..?     question     6
                  13  da            answer       12
                  14  db            answer       12
                  15  Specific      group        NULL
                  16  When is..?    question     15
                  17  ea            answer       16
                  18  eb            answer       16
                  19  Whome is..?   question     2
                  20  fa            answer       19
                  21  fb            answer       19
                  22  fc            answer       19
                  

                  我想要一个使用此关系数据返回 nested JSON 的函数.例如:

                  I want a function that return nested JSON using this relational data. For example :

                  [{
                    "id" : 1, 
                    "name" : "Geneal", 
                    "type" : "group", 
                    "children" : [{
                        "id" : 2, 
                        "name" : "What is..?", 
                        "type" : "question", 
                        "children" : [{
                           "id" : 3, 
                           "name" : "aa", 
                           "type" : "answer"
                        },
                        {
                           "id" : 4, 
                           "name" : "bb", 
                           "type" : "answer"
                        },
                        {
                           "id" : 5, 
                           "name" : "cc", 
                           "type" : "answer"
                        }]},
                        {
                        "id" : 6, 
                        "name" : "How is..?", 
                        "type" : "question", 
                        "children" : [{
                           "id" : 7, 
                           "name" : "ba", 
                           "type" : "answer"
                        },
                        {
                           "id" : 8, 
                           "name" : "bb", 
                           "type" : "answer"
                        }]
                     }]
                  ... and so on
                  }]
                  

                  我创建了一个名为 Surveymodel,如下所示:

                  I have created a model named Survey as below :

                  class Survey extends BaseModel{
                  
                      protected $table = 'questions';
                      protected $softDelete = false;
                  
                      public function parent()
                      {
                          return $this->belongsTo('Survey', 'parent');
                      }
                  
                      public function children()
                      {
                          return $this->hasMany('Survey', 'parent');
                      }   
                  }
                  

                  并在 controller 中调用它:

                  $user = Survey::all();
                  $parent = $user->parent()->first();
                  $children = $user->children()->get();
                  

                  但我没有得到正确的结果,正如我在上面的 JSON 中提到的那样.

                  But I am not getting the proper result as I have mentioned in JSON above.

                  print_r($parent->toJson()); 
                  

                  仅提供具有一级层次结构的记录(即组和问题,而不是答案).

                  gives records with one level hierarchy only (i.e group and questions, not answers).

                  同时

                  print_r($children ->toJson());
                  

                  只提供问题(不提供组和答案).

                  Gives only questions (Not groups and answers).

                  我想要整个具有 N 层级的嵌套 JSON 格式的自引用数据.

                  我也试过了

                  $user = Survey::with('parent', 'children')->get();
                  

                  但发现与上面的 $parent 相同.

                  But found same as $parent above.

                  有没有我可以得到想要的结果?

                  Is there anyway I can get the desired result?

                  提前谢谢..

                  推荐答案

                  以下是手动检索嵌套关系的方法:

                  Here's how you manually retrieve nested relations:

                  $collection = Model::with('relation1.relation2.relation3')->get();
                  

                  所以你的情况是:

                  $surveys = Survey::with('children.children.children')->get();
                  

                  显然,当关系固定时,这将完成这项工作,但这不是对同一张表建立递归关系的方法.

                  Obviously this will do the job when the relations are fixed, but it's not the way to go for a recursive relation to the same table.

                  幸运的是,你可以让这样的关系递归,那么你只需要检索整个树就是这样:

                  Fortunately, you can make such relation recursive, then all you need to retrieve whole tree is this:

                  $surveys = Survey::with('childrenRecursive');
                  

                  但是,我不会以这种方式为每一行加载父级.

                  However, I wouldn't load parent for each row this way.

                  这就是你所需要的:

                  // Survey model
                  // loads only direct children - 1 level
                  public function children()
                  {
                     return $this->hasMany('Survey', 'parent');
                  }
                  
                  // recursive, loads all descendants
                  public function childrenRecursive()
                  {
                     return $this->children()->with('childrenRecursive');
                     // which is equivalent to:
                     // return $this->hasMany('Survey', 'parent')->with('childrenRecursive);
                  }
                  
                  // parent
                  public function parent()
                  {
                     return $this->belongsTo('Survey','parent');
                  }
                  
                  // all ascendants
                  public function parentRecursive()
                  {
                     return $this->parent()->with('parentRecursive');
                  }
                  

                  <小时>

                  要获得真正的树结构,第一个查询必须仅限于根节点:


                  To get real tree structure, first query must be limited to only root nodes:

                  $surveys = Survey::with('childrenRecursive')->whereNull('parent')->get();
                  

                  这篇关于来自自引用表的 Laravel ORM 获取 N 级层次结构 JSON的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  DeepL的翻译效果还是很强大的,如果我们要用php实现DeepL翻译调用,该怎么办呢?以下是代码示例,希望能够帮到需要的朋友。 在这里需要注意,这个DeepL的账户和api申请比较难,不支持中国大陆申请,需要拥有香港或者海外信用卡才行,没账号的话,目前某宝可以
                  PHP通过phpspreadsheet导入Excel日期,导入系统后,全部变为了4开头的几位数字,这是为什么呢?原因很简单,将Excel的时间设置问文本,我们就能看到该日期本来的数值,上图对应的数值为: 要怎么解决呢?进行数据转换就行,这里可以封装方法,或者用第三方的
                  mediatemple - can#39;t send email using codeigniter(mediatemple - 无法使用 codeigniter 发送电子邮件)
                  Laravel Gmail Configuration Error(Laravel Gmail 配置错误)
                  Problem with using PHPMailer for SMTP(将 PHPMailer 用于 SMTP 的问题)
                  Issue on how to setup SMTP using PHPMailer in GoDaddy server(关于如何在 GoDaddy 服务器中使用 PHPMailer 设置 SMTP 的问题)
                    <bdo id='bpIf0'></bdo><ul id='bpIf0'></ul>
                    <i id='bpIf0'><tr id='bpIf0'><dt id='bpIf0'><q id='bpIf0'><span id='bpIf0'><b id='bpIf0'><form id='bpIf0'><ins id='bpIf0'></ins><ul id='bpIf0'></ul><sub id='bpIf0'></sub></form><legend id='bpIf0'></legend><bdo id='bpIf0'><pre id='bpIf0'><center id='bpIf0'></center></pre></bdo></b><th id='bpIf0'></th></span></q></dt></tr></i><div id='bpIf0'><tfoot id='bpIf0'></tfoot><dl id='bpIf0'><fieldset id='bpIf0'></fieldset></dl></div>

                          • <small id='bpIf0'></small><noframes id='bpIf0'>

                            <legend id='bpIf0'><style id='bpIf0'><dir id='bpIf0'><q id='bpIf0'></q></dir></style></legend>
                              <tbody id='bpIf0'></tbody>

                          • <tfoot id='bpIf0'></tfoot>