gpt4 book ai didi

mysql - 试图查询 rails 数据库

转载 作者:行者123 更新时间:2023-11-30 23:03:15 25 4
gpt4 key购买 nike

我试图从两个特定客户端的数据库中提取所有订单,我在 rails c 中尝试的所有操作都给我一个错误:

irb(main):008:0> clients = clients.find(name: "CLS_Trials")
NoMethodError: undefined method `find' for nil:NilClass

我的模式是这样的

create_table "clients", force: true do |t|
t.string "name"
t.datetime "created_at"
t.datetime "updated_at"
t.string "sku_part"
t.float "postage_account"
t.boolean "accrue_fees"
t.float "pick_pack_per_unit"
t.string "logo_file_name"
t.string "logo_content_type"
t.integer "logo_file_size"
t.datetime "logo_updated_at"
t.string "slug"
t.boolean "sub_admin"
t.boolean "static_shipping"
t.float "static_shipping_amount"
t.datetime "invoice_stop"
t.string "street_address"
t.string "city"
t.string "state"
t.string "zip"
t.string "primary_contact_name"
t.float "min_postage"
t.float "postage_threshold"
t.integer "pageviews_today"
t.integer "pageviews_yesterday"
t.boolean "using_analytics"
t.string "sites", default: [], array: true
t.integer "weather_degrees"
t.string "weather_status"
t.float "other_fees"
t.string "lime_light_user_name"
t.string "lime_light_password"
t.boolean "using_lime_light"
end

而且我知道数据在那里,关于如何为我的两个客户正确提取所有订单并将数据导出到文本文件或 exel 中,有什么建议吗?谢谢大家!

最佳答案

试试这个

clients = Client.where(name: "CLS_Trials")

C 是大写字母并删除尾随的 's'。因为 ruby​​ 中的类名必须首字母大写。在 Rails 中,模型由单数引用。

编辑:

或者你也可以使用内置的助手

clients = Client.find_by_name('CLS_Trials')

对于模型的任何属性,您都可以通过以下方式找到它们

obj = Klass_name.find_by_attr_name(attr_value)

关于mysql - 试图查询 rails 数据库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22993227/

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