非常感谢你的帮助。我有一个locations
和ads
表。位置has_many :ads
我对位置模型执行以下查询。
@locations = Location.joins(:ads).where(@location_params.require(:location).permit(:id)).includes(:ads)
然后,我要对其执行附加查询@locations
并根据以下内容对其进行过滤:ads
@locations = @locations.joins(:ads).where(ads: @ads_params.require(:ads).permit(:id)).includes(:ads)
该查询并 没有 工作。它返回一个空对象。
=> #<Location::ActiveRecord_Relation:0x1e29270>
这是参数:
location_params
@location_params.require(:location).permit(:id)
ads_params
@ads_params.require(:ads).permit(:id)
不允许这样输入特定的列:
@locations = Location.joins(:ads).where(locations: {id: 1}, ads: {id: 1})
我有postgresql,我没有考虑过使用SQL,但是我不确定。
我正在使用Rails控制台执行此查询,以进行测试。
@location_params
=> <ActionController::Parameters {"location"=><ActionController::Parameters {"id"=>1} permitted: false>} permitted: false>
@location_params.require(:location).permit(:id)
=> <ActionController::Parameters {"id"=>1} permitted: true>
@ads_params
=> <ActionController::Parameters {"ads"=><ActionController::Parameters {"id"=>1} permitted: false>} permitted: false>
@ads_params.require(:ads).permit(:id)
=> <ActionController::Parameters {"id"=>1} permitted: true>
试试这个,
ads_params = @ads_params.require(:ads).permit(:id).to_h
location_params = @location_params.require(:location).permit(:id).to_h
@locations = Location.joins(:ads).where(locations: location_params, ads: ads_params)
希望对您有所帮助!
你能帮我解决这个问题吗?我想使用此方法在我的数据库中查找特定的缺口(它是由Apache Derby制作的)。我使用了EntityManager并从NetBeans中的数据库中映射持久性-实体类。 我得到这个错误: Java . lang . illegalargumentexception:在EntityManager中创建查询时出现异常:< br >异常描述:解析[SELECT * FROM U
问题内容: 我有一个非常简单的查询,像这样: 我的默认设置是或某些用户ID,但是由于某种原因,该查询总是返回0行,我也尝试过,但还是没有运气,这可能是什么错误? EDTI 因此,在运行更多查询后,我发现我的问题是字段的默认值,因此我修改了查询,现在可以正常使用: 问题答案: NULL值需要特殊处理:http : //dev.mysql.com/doc/refman/5.1/en/working-w
我想让ElasticSearch在我的盒子上工作。我有以下映射: 所以我有一个“运动鞋”索引,它有一个“运动鞋”类型,一个“品牌”属性,它有一个“ID”和一个“标题”。 检查运动鞋是否存在,运行curl-xget“http://localhost:9200/sneakers/sneaker/1?prettley”,我得到: 现在,runningcurl-xget'http://localhost:
问题内容: 我正在使用嵌套集模型在iPhone上的本地SQLite数据库中存储较大的数据层次结构。我从他们的网站上阅读了MySQL技术文章,了解如何执行此操作,但是他们建议的查询(以及我需要的查询)之一似乎不适用于SQLite,并且我不确定如何解决它。 SQLite报告不是列,我认为这是因为其子查询实现不完整。有人对如何解决此限制有任何想法吗? 查询的目的是获取给定父节点的所有直接子代。 问题答案
问题内容: 我有两个表:和。 我想基于item_number从两个表中检索数据,并且在以下查询中工作正常。(使用内联接) 但是我也希望’items’表中的所有行,即使在opensalesorder和items中找不到与ItemName匹配的内容。 但是使用下面的查询似乎对我不起作用。 即使在左侧找不到匹配项,右联接也会从右表返回结果。 查询正确吗? 谢谢 问题答案: 这是您的查询: 该条件是“撤销
我正在尝试使用条令2查询生成器创建以下场景 我设置了Doctrine2自行生成的以下关系 这是我的回购课 但我没能完成。它抛出以下错误 [Tue Oct01 22:30:11 2013][错误][客户端127.0.0.1]PHP致命错误:未捕获异常'Doctrine\ORM\Query\QueryExc0019',消息'SELECT p from Entity\Tree p LEFT JOIN p