繁体   English   中英

尝试创建“标签”时未定义的方法“map”

[英]Undefined method 'map' when trying to create 'tags'

我正在重新使用本指南https://rubyplus.com/articles/4241-Tagging-from-Scratch-in-Rails-5,以允许我将'tastingsnotes'作为'roast.rb'模型上的标签。

但是,当我试图在浏览器中显示记录时,我得到错误undefined method 'map' 我很确定这不是我不能以某种方式正确映射标签。 我可以看到当我尝试编辑记录时,我在那里有标签。

逻辑是我有一个名为'Roasts'的模型我希望用户能够添加以逗号分隔的品尝笔记列表。 因此,我将这些视为标签。

roast.rb

class Roast < ApplicationRecord
  has_many :tastings
  has_many :notes, through: :tastings

  def self.tagged_with(name)
    Note.find_by!(name: name).roasts
  end

  def self.note_counts
    Note.select('notes.*, count(tastings.note_id) as count').joins(:tastings).group('tastings.note_id')
  end

  def tastingnotes
    notes.map(&:name).join(', ')
  end

  def tastingnotes=(names)
    self.notes = names.split(',').map do |n|
      Note.where(name: n.strip).first_or_create!
    end
  end
end

note.rb

class Note < ApplicationRecord
  has_many :tastings
  has_many :roasts, through: :tastings
end

tasting.rb

class Tasting < ApplicationRecord
  belongs_to :note
  belongs_to :roast
end

烤肉/ _form.html.rb

//items not pasted for brevity
      <div class="form-group">
        <%= form.label :tastingnotes, "Notes (separated by commas)", class: 'control-label' %><br  />
        <%= form.text_area :tastingnotes, id: :roast_tastingnotes, class: "form-control" %>
      </div>
//items not pasted for brevity

烤肉/ show.html.rb

//items not pasted for brevity
<p>
  <strong>Tasting Notes</strong>
  <%= raw @roast.tastingnotes.map(&:name).map { |t| link_to t, tastingnotes_path(t) }.join(', ') %>
</p>
//items not pasted for brevity

控制台错误:

Completed 500 Internal Server Error in 18ms (ActiveRecord: 1.1ms)



ActionView::Template::Error (undefined method `map' for "chocolate, citrus":String
Did you mean?  tap):
    39:
    40: <p>
    41:   <strong>Tasting Notes</strong>
    42:   <%= raw @roast.tastingnotes.map(&:name).map { |t| link_to t, tastingnotes_path(t) }.join(', ') %>
    43: </p>
    44:
    45:

你做到了

 def tastingnotes
    notes.map(&:name).join(', ')
  end

返回逗号分隔符串如“choco,beer”

现在你确实映射到下面的字符串

<%= raw @roast.tastingnotes.map(&:name).map { |t| link_to t, tastingnotes_path(t) }.join(', ') %>

你可以试试

  def tastingnotes
    notes.pluck(:name)
  end

<%= raw @roast.tastingnotes.map { |t| link_to t, tastingnotes_path(t) } %>

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM