gpt4 book ai didi

ruby-on-rails - 命名范围 - 绑定(bind)变量的数量错误

转载 作者:行者123 更新时间:2023-12-04 03:44:15 25 4
gpt4 key购买 nike

我有以下命名范围:

named_scope :report_search, lambda { |search|
{
:conditions => ["rep_name like ? or rep_id like ? or rep_symbol like ? or rep_issue like ?", search]
}
}

当我运行它时,我收到错误消息:
wrong number of bind variables

如果有人可以帮助我找出代码有什么问题,我将不胜感激。

非常感谢

最佳答案

如果您不想重复输入,可以使用命名绑定(bind)变量。

named_scope :report_search, lambda { |search|
{
:conditions => [" rep_name LIKE :search OR
rep_id LIKE :search OR
rep_symbol LIKE :search OR
rep_issue LIKE :search", :search => search]
}
}

关于ruby-on-rails - 命名范围 - 绑定(bind)变量的数量错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9808071/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com