acts-as-taggable-onでMyタグを設定しそのタグをつけられた投稿を表示したいのですが、2つ以上設定すると、表示されなくなってしまいます。複数個設定しても対応できるようにするには、どうしたら良いでしょうか。なにかわかる方は回答・コメントお願いしますm(_ _)m。
edithtmlerb
1#myタグの設定はdeviseのアカウント編集ページでできるようになっています。 2 3<%= form_for(resource, as: resource_name, url: registration_path(resource_name), html: { method: :put }) do |f| %> 4 <%= render "devise/shared/error_messages", resource: resource %> 5 6省略 7 8 <%= text_field_tag 'user[tag_list]', resource.tag_list.join(","), placeholder: "タグ「,」で区切って複数のタグを入力できます" %> 9 10 <div class="actions-edit"> 11 <%= f.submit "編集完了" %> 12 </div> 13<% end %> 14 15 <%= link_to "戻る", :back, class: "linkto-edit" %>
controller
1@questions = Question.tagged_with("#{current_man.tag_list}").page(params[:page])
#表示 <% @questions.each do |q| %> <hr> <div class="data"> <h3><%= q.title %></h3> <% end %> <div class="bootstrap"> <%= paginate @questions %> </div>
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。