如何根据 Rails3 中模型的子模型计算模型中的值?

发布于 2024-10-28 01:48:39 字数 162 浏览 0 评论 0原文

我是 Rails 新手,我可以想出几种方法来解决这个问题,但我想用“rails”方式来解决。我的问题是我有一个模型 - 考试 - 其中:有很多问题。我想在考试模型中编写一个函数来计算考试分数(并将其存储在考试模型中)。为此,我需要从属于考试的问题对象中读取数据。

任何提示或文档链接将不胜感激。

I'm new to rails and I can think of several ways to solve this problem, but I'd like to do it the "rails" way. My problem is that I have a model - exam - which :has_many questions. I'd like to write a function in the exam model which will calculate the score for the exam (and store it in the exam model). To do this, I need to read data from the question objects that belong to the exam.

Any tips or links to documentation would be greatly appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

习ぎ惯性依靠 2024-11-04 01:48:39

只要您没有写任何有关数据结构的内容,我们就可以想象您的每个问题都有布尔正确字段。并且您的考试有 Integer total_score 字段。因此,在考试后,应该计算所有正确答案的问题:

class Exam < ActiveRecord::Base
  has_many :questions
  before_save :set_score

  def set_score
    total_score = questions.where(:correct => true).count
  end
end

As far as you didn't write anything about your data structure let's imagine that your every question has_got Boolean correct field. And your exam has got Integer total_score field. So after examing it should count all questions with correct answer:

class Exam < ActiveRecord::Base
  has_many :questions
  before_save :set_score

  def set_score
    total_score = questions.where(:correct => true).count
  end
end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文