用户、表单和任务关联轨道



我有一个应用程序,允许用户填写一份表格(名为"检查表"),然后列出他必须做的任务列表。这些任务(名为"建议")与用户在表格中给出的答案有关。例如,如果一个问题是"你做晚饭了吗?"而用户回答"没有",则会显示一条建议"去做晚饭"。

建议完成后,用户可以将其标记为已完成。所有用户的建议都是一样的。它们已经由管理员在应用程序中创建。

所以用户有一个检查表,检查表属于用户。

我遇到的问题是:当用户将建议标记为已完成时,所有用户都将其标记为已结束。不应该这样。

我真的不知道该怎么解决这个问题。建议和用户之间的关联"有很多"one_answers"属于"不应该工作,因为用户没有创建建议?

我刚接触铁路,所以如果有人能帮忙,我会很高兴。请注意,我使用Devise来管理用户。

架构:

ActiveRecord::Schema.define(version: 20160407143608) do
  create_table "advices", force: :cascade do |t|
    t.string   "name"
    t.text     "content"
    t.datetime "created_at",  null: false
    t.datetime "updated_at",  null: false
    t.integer  "category_id"
    t.boolean  "status"
    t.string   "linkname1"
    t.text     "link1"
    t.text     "link2"
    t.string   "linkname2"
    t.text     "link3"
    t.string   "linkname3"
    t.integer  "ref"
    t.boolean  "completed"
  end
  create_table "categories", force: :cascade do |t|
    t.string   "name",       null: false
    t.datetime "created_at", null: false
    t.datetime "updated_at", null: false
  end
  create_table "checklists", force: :cascade do |t|
    t.boolean  "facebook"
    t.boolean  "twitter"
    t.boolean  "linkedin"
    t.boolean  "viadeo"
    t.boolean  "instagram"
    t.boolean  "community"
    t.boolean  "cms"
    t.boolean  "seo"
    t.boolean  "crowdfunding"
    t.datetime "created_at",   null: false
    t.datetime "updated_at",   null: false
    t.integer  "user_id"
  end
  add_index "checklists", ["user_id"], name: "index_checklists_on_user_id"
  create_table "users", force: :cascade do |t|
    t.string   "email",                  default: "", null: false
    t.string   "encrypted_password",     default: "", null: false
    t.string   "reset_password_token"
    t.datetime "reset_password_sent_at"
    t.datetime "remember_created_at"
    t.integer  "sign_in_count",          default: 0,  null: false
    t.datetime "current_sign_in_at"
    t.datetime "last_sign_in_at"
    t.string   "current_sign_in_ip"
    t.string   "last_sign_in_ip"
    t.datetime "created_at",                          null: false
    t.datetime "updated_at",                          null: false
  end
  add_index "users", ["email"], name: "index_users_on_email", unique: true
  add_index "users", ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true
end

型号:

class Advice < ActiveRecord::Base
    belongs_to :category
end
class Checklist < ActiveRecord::Base
    belongs_to :user
end
class User < ActiveRecord::Base
  # Include default devise modules. Others available are:
  # :confirmable, :lockable, :timeoutable and :omniauthable
  devise :database_authenticatable, :registerable,
         :recoverable, :rememberable, :trackable, :validatable
  has_many :checklists
end

视图:

<%= advice.name %> | <%= link_to "Completed", complete_advices_path(advice), method: :put %>

控制器:

  def complete
   @advice.completed = true
   @advice.save
   redirect_to root_path
  end

您需要一个联接模型。

$ rails g model UserAdvice user:references advice:references

class UserAdvice
   belongs_to :user
   belongs_to :advice
end

在user.rb 中

has_many :user_advices
has_many :advices, through: :user_advices

在advice.rb

has_many :user_advices
has_many :users, through: :user_advices 

当某些内容被签出时,在联接模型中创建一条记录,然后查询该表以确保为单个用户完成了任务。

因此,当用户签出任务并提交时,您实际上创建了一个具有advice_iduser_id的记录,而不是使用completed布尔值。然后,如果该建议存在该记录,则应该为该用户注销该记录。这有道理吗?

例如,如果你向完成任务的用户隐藏已完成的任务,你可以说之类的话

<% if UserAdvice.where(user_id: current_user.id, advice_id: advice.id).count > 0 %>

这会起作用,一开始也很好,但这样做可能会减慢你的应用程序的速度。如果有很多建议,您可能想做的是运行一次查询,获取所有user_advice记录并提取ID。然后对照该ID数组和单个记录进行检查。

在您的控制器中

 # this will return an array of advice_ids
 @user_advices = UserAdvice.where(user_id: current_user).pluck(:advice_id)  

然后,当你在你的观点中反复提出建议时:

<% unless @user_advices.include?(advice.id) %>
  show the advice
<% end %>

编辑:

要在完整操作中创建记录:

def complete
  UserAdvice.create(user_id: current_user.id, advice_id: @advice.id)
  redirect_to root_path
end

相关内容

  • 没有找到相关文章

最新更新