gpt4 book ai didi

ruby-on-rails - Rails 4 to_json 产生意外异常 nil 不是符号

转载 作者:数据小太阳 更新时间:2023-10-29 06:39:11 26 4
gpt4 key购买 nike

我正在将 Rails 3 应用程序升级到 Rails 4。在 Rails 3 中,包含 ActiveRecord 对象数组的散列的 json 序列化工作正常;现在在 Rails 4 中它有不可预测的结果。

这是一个在 Rails 4 上因 TypeError Exception: nil is not a symbol 而失败的示例对象

{1230 =>
[
#<QuestionAnswerResponse response_id: 127, response_set_id: 6, response_group: nil, question_data_export_identifier: "is_co_pi_involved", answer: "No", question_id: 1230, answer_id: 2077, response: "">,
#<QuestionAnswerResponse response_id: 131, response_set_id: 6, response_group: nil, question_data_export_identifier: "is_co_pi_involved", answer: "No", question_id: 1230, answer_id: 2077, response: "">
]
}

现在如果我拿另一个类似的物体;包含一组 ActiveRecord 对象的哈希并运行 to_json 它适用于这个...

{1234 =>
[
#<Response id: 1, response_set_id: 2, question_id: 4, answer_id: 2, datetime_value: nil, integer_value: nil, float_value: nil, unit: nil, text_value: nil, string_value: nil, response_other: nil, response_group: nil, created_at: "2014-05-30 21:17:23", updated_at: "2014-05-30 21:17:23", survey_section_id: 1, api_id: "f44b22ba-a93b-477f-8a7f-c5b4566338f0", attach_file_name: nil, attach_content_type: nil, attach_file_size: nil, attach_updated_at: nil>,
#<Response id: 2, response_set_id: 2, question_id: 10, answer_id: 10, datetime_value: nil, integer_value: nil, float_value: nil, unit: nil, text_value: "test", string_value: nil, response_other: nil, response_group: nil, created_at: "2014-05-30 21:17:23", updated_at: "2014-05-30 21:17:23", survey_section_id: 1, api_id: "e7fa8aa2-6e47-4f88-8802-949fdc902a2e", attach_file_name: nil, attach_content_type: nil, attach_file_size: nil, attach_updated_at: nil>
]
}

最佳答案

支持我的 QuestionAnswerResponse 模型的 View 没有 id 列,而且我没有在模型中设置主键。以我使用此模型的身份,我不需要主键;这是一个只读 View ,用于更轻松地直接访问一些复杂的键/值对,而不是通过更复杂的逻辑。

在 Rails 3 中这很好用;在 Rails 4 中,当您访问没有主键的模型时,您最终会在散列中得到一个如下所示的属性 nil => nil

问题实际上出在 ActiveRecord 级别,但在我尝试进行 json 序列化之前实际上并没有引起问题;在那个时间点尝试调用 nil.to_sym 引发异常。

对我来说,这似乎是 ActiveRecord 中的一个错误;但现在我已经通过在我的模型上手动设置主键来解决这个问题。

关于ruby-on-rails - Rails 4 to_json 产生意外异常 nil 不是符号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24329090/

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