久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

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

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

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

        <legend id='WdwPA'><style id='WdwPA'><dir id='WdwPA'><q id='WdwPA'></q></dir></style></legend>
      1. <i id='WdwPA'><tr id='WdwPA'><dt id='WdwPA'><q id='WdwPA'><span id='WdwPA'><b id='WdwPA'><form id='WdwPA'><ins id='WdwPA'></ins><ul id='WdwPA'></ul><sub id='WdwPA'></sub></form><legend id='WdwPA'></legend><bdo id='WdwPA'><pre id='WdwPA'><center id='WdwPA'></center></pre></bdo></b><th id='WdwPA'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='WdwPA'><tfoot id='WdwPA'></tfoot><dl id='WdwPA'><fieldset id='WdwPA'></fieldset></dl></div>

        無法讓 Laravel 助理工作

        Can#39;t get Laravel associate to work(無法讓 Laravel 助理工作)
        <tfoot id='ZzAy7'></tfoot>

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

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

          <i id='ZzAy7'><tr id='ZzAy7'><dt id='ZzAy7'><q id='ZzAy7'><span id='ZzAy7'><b id='ZzAy7'><form id='ZzAy7'><ins id='ZzAy7'></ins><ul id='ZzAy7'></ul><sub id='ZzAy7'></sub></form><legend id='ZzAy7'></legend><bdo id='ZzAy7'><pre id='ZzAy7'><center id='ZzAy7'></center></pre></bdo></b><th id='ZzAy7'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='ZzAy7'><tfoot id='ZzAy7'></tfoot><dl id='ZzAy7'><fieldset id='ZzAy7'></fieldset></dl></div>
              <tbody id='ZzAy7'></tbody>

              1. <legend id='ZzAy7'><style id='ZzAy7'><dir id='ZzAy7'><q id='ZzAy7'></q></dir></style></legend>
                  本文介紹了無法讓 Laravel 助理工作的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                  問題描述

                  我不太確定我是否理解 associate 方法在 Laravel 中.我理解這個想法,但我似乎無法讓它發揮作用.

                  I'm not quite sure if I understand the associate method in Laravel. I understand the idea, but I can't seem to get it to work.

                  使用這個(蒸餾)代碼:

                  With this (distilled) code:

                  class User
                  {
                  
                      public function customer()
                      {
                          return $this->hasOne('Customer');
                      }
                  
                  }
                  
                  class Customer
                  {
                  
                      public function user()
                      {
                          return $this->belongsTo('User');
                      }
                  
                  }
                  
                  $user = new User($data);
                  $customer = new Customer($customerData);
                  
                  $user->customer()->associate($customer);
                  

                  當我嘗試運行它時,我收到一個 Call to undefined method IlluminateDatabaseQueryBuilder::associate().

                  I get a Call to undefined method IlluminateDatabaseQueryBuilder::associate() when I try to run this.

                  據我所知,我完全按照文檔中的說明進行操作.

                  From what I can read, I do it exactly as is stated in the docs.

                  我做錯了什么?

                  推薦答案

                  我不得不承認,當我第一次開始使用 Laravel 時,我必須始終如一地參考文檔的部分關系,甚至在某些情況下我不太對勁.

                  I have to admit that when I first started using Laravel the relationships where the part that I had to consistently refer back to the docs for and even then in some cases I didn't quite get it right.

                  為了幫助您,associate() 用于更新 belongsTo() 關系.查看您的代碼,從 $user->customer() 返回的類是一個 hasOne 關系類,上面沒有關聯方法.

                  To help you along, associate() is used to update a belongsTo() relationship. Looking at your code, the returned class from $user->customer() is a hasOne relationship class and will not have the associate method on it.

                  如果你反過來做.

                  $user = new User($data);
                  $customer = new Customer($customerData);
                  
                  $customer->user()->associate($user);
                  $customer->save();
                  

                  它會像 $customer->user()belongsTo 關系一樣工作.

                  It would work as $customer->user() is a belongsTo relationship.

                  反過來,您需要先保存用戶模型,然后將客戶模型保存到其中,例如:

                  To do this the other way round you would first save the user model and then save the customer model to it like:

                  $user = new User($data);
                  $user->save();
                  
                  $customer = new Customer($customerData);
                  $user->customer()->save($customer);
                  

                  可能沒有必要先保存用戶模型,但我總是這樣做,不知道為什么.

                  It may not be necessary to save the user model first but I've just always done that, not sure why.

                  這篇關于無法讓 Laravel 助理工作的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!

                  【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!

                  相關文檔推薦

                  Deadlock exception code for PHP, MySQL PDOException?(PHP、MySQL PDOException 的死鎖異常代碼?)
                  PHP PDO MySQL scrollable cursor doesn#39;t work(PHP PDO MySQL 可滾動游標不起作用)
                  PHP PDO ODBC connection(PHP PDO ODBC 連接)
                  Using PDO::FETCH_CLASS with Magic Methods(使用 PDO::FETCH_CLASS 和魔術方法)
                  php pdo get only one value from mysql; value that equals to variable(php pdo 只從 mysql 獲取一個值;等于變量的值)
                  MSSQL PDO could not find driver(MSSQL PDO 找不到驅動程序)
                  <tfoot id='i7sVE'></tfoot>
                  <legend id='i7sVE'><style id='i7sVE'><dir id='i7sVE'><q id='i7sVE'></q></dir></style></legend>
                    <bdo id='i7sVE'></bdo><ul id='i7sVE'></ul>
                    1. <small id='i7sVE'></small><noframes id='i7sVE'>

                        <tbody id='i7sVE'></tbody>

                          <i id='i7sVE'><tr id='i7sVE'><dt id='i7sVE'><q id='i7sVE'><span id='i7sVE'><b id='i7sVE'><form id='i7sVE'><ins id='i7sVE'></ins><ul id='i7sVE'></ul><sub id='i7sVE'></sub></form><legend id='i7sVE'></legend><bdo id='i7sVE'><pre id='i7sVE'><center id='i7sVE'></center></pre></bdo></b><th id='i7sVE'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='i7sVE'><tfoot id='i7sVE'></tfoot><dl id='i7sVE'><fieldset id='i7sVE'></fieldset></dl></div>

                          • 主站蜘蛛池模板: 亚洲黄色视屏 | 欧美日韩在线综合 | 久久久久综合 | 色必久久| 国产一区二区免费 | 国产精品久久久久久久模特 | 在线欧美亚洲 | 欧美群妇大交群中文字幕 | 麻豆视频国产在线观看 | 91久久久www播放日本观看 | 亚洲综合视频 | 播放一级毛片 | 国产精品成人在线观看 | 日韩精品一区二区三区在线 | 欧美日韩在线免费观看 | 日韩av第一页 | 免费一级做a爰片久久毛片潮喷 | 日本久久网 | 成人a视频片观看免费 | 青娱乐国产 | a级片www| 久久五月婷| 国产农村妇女精品一区 | 毛片免费观看视频 | 99精品电影 | 亚洲高清在线观看 | 久久国产视频网 | 婷婷久 | 久久久精品一区 | 免费视频一区二区 | 国产不卡在线观看 | 国产精品一区一区 | 日韩在线播放第一页 | 春色av| 久久久国产亚洲精品 | a级免费黄色片 | 国产精品视屏 | 中文字幕一区二区三区乱码图片 | 国产高清视频在线观看 | 亚洲一区亚洲二区 | 亚洲成av人影片在线观看 |