POSO
@POSO

Are you sure you want to delete the question?

If your question is resolved, you may close it.

Leaving a resolved question undeleted may help others!

We hope you find it useful!

category_idで絞り込み機能をつけたい

解決したいこと

html上にeach doで全アイテムを表示させています。
その全アイテムをcategory_idのプルダウンで絞り込む機能が欲しいです
searchを使うのは理解しています
categoryはActiveHash::Baseで実装していますが、うまく表示されませんでした

発生している問題・エラー

class Item < ApplicationRecord
  extend ActiveHash::Associations::ActiveRecordExtensions

  belongs_to :category
end
class Category < ActiveHash::Base
  include ActiveHash::Associations
  has_many :items
  self.data = [
    { id: 0, name: '--' },
    { id: 1, name: 'その他' },
  ]
end

自分で試したこと

modelに直で書くわけではないのでわかりませんでした

0

No Answers yet.

Your answer might help someone💌