草庐IT

mysql - Laravel 查询生成器不会返回基于角色 = 客户的所有价格。只需返回 1 个价格

coder 2023-10-26 原文

我正在设计一个应用程序,零售商可以在其中添加具有初始价格的产品(例如存储在产品表中),然后客户可以索取从零售商处购买的产品的价格(此信息存储在价格表显示为示例)。然后零售商也可以更新/回收价格表中的价格。客户可以一次又一次地收回产品的价格。

因此,我有 2 个用户角色,分别是零售商和客户。我在模型中使用具有角色和用户之间默认关系的委托(delegate)角色包。在我接下来解释之前,这是我的简单数据库设计和所有工作示例(请随时要求包括任何内容):

=============== 我的数据库设计示例 ===============

用户

 __________________________
| id | email   | password |
|-------------------------|
| 1  | a@g.com | 123      |
| 2  | b@g.com | 123      |
| 3    c@g.com | 123      |
| 4    d@g.com | 123      |
 --------------------------

角色

  ______________
 |id |  slug    |
 |--------------|
 |1  | customer |
 |2  | retailer |
 ----------------

role_user

 __________________
 |id_user |  id_role|
 |------------------|
 |  1     |    1    |  -> a@gmail.com is a customer
 |  2     |    2    |  -> b@gmail.com is a retailer
 |  3     |    1    |  -> c@gmail.com is a customer
 |  4     |    1    |  -> d@gmail.com is a customer
  ------------------

价格: (客户或零售商可以要求 1 个或多个价格):

 _____________________________________
|id|  user_id |  product_id  | price |
|----------------------------|
|1 |    1     |      1       |10.00  | -> price claimed by a customer a@gmail.com on product 1
|2 |    2     |      1       |5.00   | -> price claimed by a retailer b@gmail.com on product 1
|3 |    1     |      1       |6.00   | -> price claimed by a previous customer a@gmail.com on product 1
|4 |    3     |      1       |5.00   | -> price claimed by a customer c@gmail.com on product 1
|5 |    2     |      1       |7.00   | -> price claimed by a previous retailer b@gmail.com on product 1
|6 |    3     |      1       |8.00   | -> price claimed by a customer c@gmail.com on product 1

表格产品

 _____________________________________
|id      |  user_id| name     | Price
|-------------------------------------
|  1     |    1    | Milk     |  10.00
|  2     |    2    | Phone    |  12.33
|  3     |    1    | computer |  33.44
|  4     |    1    | Banana   |  33.22
--------------------------------------

=============== 我的模型关系 ===============

价格模型关系

class Price extends Model
{
  public function product()
  {
    return $this->belongsTo('App\Product');
  }

 public function user()
 {
   return $this->belongsTo('App\User');
 }
}

产品型号关系

class Product extends Model
{

  public function prices()
  {
    return $this->hasMany('App\Price');
  }
}

用户模型关系//一个用户可以申领1个或多个价格

class User extends Model
{
   public function prices ()
  {
    return $this->hasMany('App\Price');
  }
}

=============== 我的产品 Controller ===============

这是关于如何获取除零售商以外的所有客户的价格的棘手部分:

class ProductController extends Controller
{
 public function show($id)
 {
   $product = Product::findOrFail($id); 

   // This query should return all price claimed by customers except retailer. But the problem is, it only return 1 row, the first row which the output is 10.00.

   $query_customer =$product->prices()->whereHas('user', function ($q) {
        $q->whereHas('roles', function ($q) {
            $q->where('slug', 'customer');
        });
    });
    $latest_price_by_customer= $query_customer->value('price');

     dd($latest_price_by_customer); 
     //it just return 1 row: price 10.00

    /* It should return the collection that I can do foreach statement. The output should be like this:

      10.00
      6.00
      5.00
      7.00
      8.00

   */

 } 
}

上面 Controller 中的查询返回除零售商以外的客户要求的所有价格。但问题是,它只返回 1 行,输出为 10.00 的第一行。

它应该从价格表中输出客户要求的所有价格,如下所示:

10.00 6.00 5.00 7.00 8.00

有什么想法吗?

更新:

到目前为止,我更改了我的 Controller 代码:

   $product = Product::findOrFail($id); 
   $query_customer =$product->prices()->whereHas('user', function ($q) {
        $q->whereHas('roles', function ($q) {
            $q->where('slug', 'customer');
        });
    });
    $latest_price_by_customer= $query_customer->value('price');

     dd($latest_price_by_customer); 

为此:

    $product = Product::with('prices')->findOrFail($id);


    $product_query= $product->prices()->where('product_id', $id) ->whereHas('user', function ($q) {
        $q->whereHas('roles', function ($q) {
            $q->where('slug', 'customer');
        });
    })->select('price')->get();


    dd($product_query); //display collection and return the correct values
   }

我这里有一个小问题:当循环遍历集合时

    foreach($product_query->prices as $pr)
    {
       // dd($pr);
       // echo $pr->price . ' ___ ' ;
    }

我在 ProductController.php 的第 72 行中遇到了 ErrorException 错误:

    Undefined property: Illuminate\Database\Eloquent\Collection::$prices 

但关系是存在的。

最佳答案

如果有人在寻找答案,这是返回集合而不是 1 行的正确查询:

$product = Product::with('prices')->findOrFail($id);
$product_query= $product->prices()->where('product_id', $id) ->whereHas('user', function ($q) {
        $q->whereHas('roles', function ($q) {
            $q->where('slug', 'customer');
        });
    })->select('price')->get();

    foreach($product_query as $price)
    {
        echo $price->price;
    }

关于mysql - Laravel 查询生成器不会返回基于角色 = 客户的所有价格。只需返回 1 个价格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34977473/

有关mysql - Laravel 查询生成器不会返回基于角色 = 客户的所有价格。只需返回 1 个价格的更多相关文章

  1. ruby - ECONNRESET (Whois::ConnectionError) - 尝试在 Ruby 中查询 Whois 时出错 - 2

    我正在用Ruby编写一个简单的程序来检查域列表是否被占用。基本上它循环遍历列表,并使用以下函数进行检查。require'rubygems'require'whois'defcheck_domain(domain)c=Whois::Client.newc.query("google.com").available?end程序不断出错(即使我在google.com中进行硬编码),并打印以下消息。鉴于该程序非常简单,我已经没有什么想法了-有什么建议吗?/Library/Ruby/Gems/1.8/gems/whois-2.0.2/lib/whois/server/adapters/base.

  2. ruby - 为什么 4.1%2 使用 Ruby 返回 0.0999999999999996?但是 4.2%2==0.2 - 2

    为什么4.1%2返回0.0999999999999996?但是4.2%2==0.2。 最佳答案 参见此处:WhatEveryProgrammerShouldKnowAboutFloating-PointArithmetic实数是无限的。计算机使用的位数有限(今天是32位、64位)。因此计算机进行的浮点运算不能代表所有的实数。0.1是这些数字之一。请注意,这不是与Ruby相关的问题,而是与所有编程语言相关的问题,因为它来自计算机表示实数的方式。 关于ruby-为什么4.1%2使用Ruby返

  3. ruby-on-rails - 在 Rails 和 ActiveRecord 中查询时忽略某些字段 - 2

    我知道我可以指定某些字段来使用pluck查询数据库。ids=Item.where('due_at但是我想知道,是否有一种方法可以指定我想避免从数据库查询的某些字段。某种反拔?posts=Post.where(published:true).do_not_lookup(:enormous_field) 最佳答案 Model#attribute_names应该返回列/属性数组。您可以排除其中一些并传递给pluck或select方法。像这样:posts=Post.where(published:true).select(Post.attr

  4. ruby - 检查字符串是否包含散列中的任何键并返回它包含的键的值 - 2

    我有一个包含多个键的散列和一个字符串,该字符串不包含散列中的任何键或包含一个键。h={"k1"=>"v1","k2"=>"v2","k3"=>"v3"}s="thisisanexamplestringthatmightoccurwithakeysomewhereinthestringk1(withspecialcharacterslike(^&*$#@!^&&*))"检查s是否包含h中的任何键的最佳方法是什么,如果包含,则返回它包含的键的值?例如,对于上面的h和s的例子,输出应该是v1。编辑:只有字符串是用户定义的。哈希将始终相同。 最佳答案

  5. ruby - Ruby 中的隐式返回值是怎么回事? - 2

    所以我开始关注ruby​​,很多东西看起来不错,但我对隐式return语句很反感。我理解默认情况下让所有内容返回self或nil但不是语句的最后一个值。对我来说,它看起来非常脆弱(尤其是)如果你正在使用一个不打算返回某些东西的方法(尤其是一个改变状态/破坏性方法的函数!),其他人可能最终依赖于一个返回对方法的目的并不重要,并且有很大的改变机会。隐式返回有什么意义?有没有办法让事情变得更简单?总是有返回以防止隐含返回被认为是好的做法吗?我是不是太担心这个了?附言当人们想要从方法中返回特定的东西时,他们是否经常使用隐式返回,这不是让你组中的其他人更容易破坏彼此的代码吗?当然,记录一切并给出

  6. ruby-on-rails - 如何在 Rails 3 中创建自定义脚手架生成器? - 2

    有这些railscast。http://railscasts.com/episodes/218-making-generators-in-rails-3有了这个,你就会知道如何创建样式表和脚手架生成器。http://railscasts.com/episodes/216-generators-in-rails-3通过这个,您可以了解如何添加一些文件来修改脚手架View。我想把两者结合起来。我想创建一个生成器,它也可以创建脚手架View。有点像RyanBates漂亮的生成器或web_app_themegem(https://github.com/pilu/web-app-theme)。我

  7. ruby-on-rails - ruby 日期方程不返回预期的真值 - 2

    为什么以下不同?Time.now.end_of_day==Time.now.end_of_day-0.days#falseTime.now.end_of_day.to_s==Time.now.end_of_day-0.days.to_s#true 最佳答案 因为纳秒数不同:ruby-1.9.2-p180:014>(Time.now.end_of_day-0.days).nsec=>999999000ruby-1.9.2-p180:015>Time.now.end_of_day.nsec=>999999998

  8. ruby - 从 String#split 返回的零长度字符串 - 2

    在Ruby1.9.3(可能还有更早的版本,不确定)中,我试图弄清楚为什么Ruby的String#split方法会给我某些结果。我得到的结果似乎与我的预期相反。这是一个例子:"abcabc".split("b")#=>["a","ca","c"]"abcabc".split("a")#=>["","bc","bc"]"abcabc".split("c")#=>["ab","ab"]在这里,第一个示例返回的正是我所期望的。但在第二个示例中,我很困惑为什么#split返回零长度字符串作为返回数组的第一个值。这是什么原因呢?这是我所期望的:"abcabc".split("a")#=>["bc"

  9. 使用canal同步MySQL数据到ES - 2

    文章目录一、概述简介原理模块二、配置Mysql使用版本环境要求1.操作系统2.mysql要求三、配置canal-server离线下载在线下载上传解压修改配置单机配置集群配置分库分表配置1.修改全局配置2.实例配置垂直分库水平分库3.修改group-instance.xml4.启动监听四、配置canal-adapter1修改启动配置2配置映射文件3启动ES数据同步查询所有订阅同步数据同步开关启动4.验证五、配置canal-admin一、概述简介canal是Alibaba旗下的一款开源项目,Java开发。基于数据库增量日志解析,提供增量数据订阅&消费。Git地址:https://github.co

  10. ruby - 为什么 Integer.respond_to?( :even? ) 返回 false? - 2

    我一直在研究RubyKoans,我发现about_open_classes.rbkoan很有趣。特别是他们修改Integer#even?方法的最后一个测试。我想尝试一下这个概念,所以我打开了Irb并尝试运行Integer.respond_to?(:even?),但令我惊讶的是我得到了错误。然后我尝试了Fixnum.respond_to?(:even?)并得到了错误。我还尝试了Integer.respond_to?(:respond_to?)并得到了true,当我执行2.even?时,我也得到了true。我不知道发生了什么。谁能告诉我缺少什么? 最佳答案

随机推荐