行为上的怪异行为

我有一个名为Recipe的模型,它使用gem上的acts-as-taggable将标签添加到食谱中。 奇怪的行为是当我通过控制器编辑和更新配方时, 添加配方标记而不是更新到适当的标记。 有一个类似的Github问题被报道,但没有任何人的回复。 我的作为标签的宝石版本是3.2.6。

例如,我的食谱有三个标签: fruitfruitvegetablesfruit标签不相关,因此我在f.tag_list输入字段中删除了这两个fruit标签,仅包含vegetables

Processing by Users::RecipesController#update as JS
Parameters: {"utf8"=>"✓", "recipe"=>{"image_ids"=>"46746", "cover_image_id"=>"46746",
"name"=>"Cauliflower", "description"=>"this is the description", "preparation_time_hr"=>"0",
"preparation_time_min"=>"50", "servings"=>"4", 
"category_ids"=>"", "cuisine_ids"=>"", "tag_list"=>"vegetables", "ingredients"=>....}

用户/ recipes_controller.rb

def update
  if @recipe.update_attributes(recipe_params)
    if params[:publish_recipe] && params[:publish_recipe] == "true"
      update_status!(:publish!)
    end
    redirect_to user_recipes_url
  else
    respond_to do |format|
      format.html{ render "edit" }
      format.js { render partial: "shared/flash_message", locals: { flash_type: "error", flash_message: "#{@recipe.errors.full_messages.to_sentence}" } }
    end
  end
end

recipe_params包含tag_list作为允许的参数。

def recipe_params
  params.required(:recipe).permit(:name, :category_ids, :cuisine_ids, :tag_list, :preparation_time_hr,
  :cover_image_id, :preparation_time_min, :servings, :description, :image_ids, :commentable,
  ingredients_attributes: [:id, :name, :_destroy],
  instructions_attributes: [:id, :text, :_destroy, image_attributes: [:id, :picture, :_destroy]]
) rescue {}
end

但最终,旧标签并没有被删除,新的标签已被添加到列表中: fruitfruitvegetablesvegetables

另一个奇怪的事情是,当我尝试查看配方的tag_list时,它是一个空数组。 尝试编辑rails控制台中的tag_list ,它添加了另一个标记,但是当我做r.reload tag_list它仍然是一个空数组。 现在配方和标签之间的关系如下所示:

r = Recipe.find(20980)
[56] pry(main)> r.tag_list
 ActsAsTaggableOn::Tag Load (14.9ms)  SELECT `tags`.* FROM `tags` INNER JOIN `taggings` ON `tags`.`id` = `taggings`.`tag_id` WHERE `taggings`.`taggable_id` = 20980 AND `taggings`.`taggable_type` = 'Recipe' AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)
=> []
[57] pry(main)> r.tags
=> [#<ActsAsTaggableOn::Tag id: 2, name: "fruit", taggings_count: 1138, tagger_id: nil, tagger_type: nil, created_at: "2015-07-25 15:47:20", updated_at: "2015-07-25 15:47:53">,
 #<ActsAsTaggableOn::Tag id: 2, name: "fruit", taggings_count: 1138, tagger_id: nil, tagger_type: nil, created_at: "2015-07-25 15:47:20", updated_at: "2015-07-25 15:47:53">,
 #<ActsAsTaggableOn::Tag id: 531, name: "vegetables", taggings_count: 21, tagger_id: nil, tagger_type: nil, created_at: "2015-07-25 15:56:15", updated_at: "2015-07-25 15:56:16">,
 #<ActsAsTaggableOn::Tag id: 531, name: "vegetables", taggings_count: 21, tagger_id: nil, tagger_type: nil, created_at: "2015-07-25 15:56:15", updated_at: "2015-07-25 15:56:16">,
 #<ActsAsTaggableOn::Tag id: 531, name: "vegetables", taggings_count: 21, tagger_id: nil, tagger_type: nil, created_at: "2015-07-25 15:56:15", updated_at: "2015-07-25 15:56:16">]
[58] pry(main)> r.taggings
  ActsAsTaggableOn::Tagging Load (35.8ms)  SELECT `taggings`.* FROM `taggings`  WHERE `taggings`.`taggable_id` = 20980 AND `taggings`.`taggable_type` = 'Recipe'
=> [#<ActsAsTaggableOn::Tagging id: 20408, tag_id: 2, taggable_id: 20980, taggable_type: "Recipe", tagger_id: 200422, tagger_type: "User", context: "tags", created_at: "2015-08-21 03:56:13">,
 #<ActsAsTaggableOn::Tagging id: 20409, tag_id: 2, taggable_id: 20980, taggable_type: "Recipe", tagger_id: 200422, tagger_type: "User", context: "tags", created_at: "2015-08-21 03:56:14">,
 #<ActsAsTaggableOn::Tagging id: 20410, tag_id: 531, taggable_id: 20980, taggable_type: "Recipe", tagger_id: 200422, tagger_type: "User", context: "tags", created_at: "2015-08-21 04:01:36">,
 #<ActsAsTaggableOn::Tagging id: 20411, tag_id: 531, taggable_id: 20980, taggable_type: "Recipe", tagger_id: 200422, tagger_type: "User", context: "tags", created_at: "2015-08-21 04:47:38">,
 #<ActsAsTaggableOn::Tagging id: 20412, tag_id: 531, taggable_id: 20980, taggable_type: "Recipe", tagger_id: 200422, tagger_type: "User", context: "tags", created_at: "2015-08-21 04:53:38">]

tag_list数据库查询也很奇怪,为什么查询包含这个taggings.tagger_id IS NULL

我还是新手,想知道如何使用gem方法正确更新标记? 我希望我可以避免使用我自己的代码更新标记以避免更多问题。 注意到我的食谱模型是由paper_trail gem版本化的,我希望它与这个问题无关。


由于没有来自互联网的解决方案,我只在配方中使用这个标签,现在我手动调用一个方法来重新更新模型保存后的标签。

def update_tags(tag_list)
  self.taggings.destroy_all
  list = tag_list.split(",")
  list.each do |t|
    tag = Tag.find_or_create_by(name: t)
    self.taggings.create(tag_id: tag.id, context: "tags")
  end
  return self.taggings
end

我仍然认为这个问题有更好的解决方案,我愿意接受替代方案作为最佳答案。


我无法看到act-as-taggable-on文档中有关tags_list作为参数放入update_attributes方法时会发生什么的文档,但在您的情况下,它似乎添加了标签而不删除现有的标签。 我在文档中注意到tag_list可以用=来代替现有标签:

您也可以通过直接分配来添加和删除标签。 请注意,这将删除现有的标签,以便注意使用它。

@user.tag_list = "awesome, slick, hefty"
@user.save

所以你可以在你的更新方法中做到这一点

def update
  if @recipe.update_attributes(recipe_params)
    @recipe.tag_list = recipe_params["tag_list"]
    @recipe.save
    ...
  else
    ...
  end
end
链接地址: http://www.djcxy.com/p/35971.html

上一篇: Weird behaviors on acts

下一篇: Difficulty in getting mp3 to work in Paperclip