수색…


통사론

  • serialize: <field_plural_symbol>

객체 저장하기

개체로 저장하고 데이터베이스로 검색해야하는 특성이있는 경우 serialize 메서드를 사용하여 해당 특성의 이름을 지정하면 자동으로 처리됩니다.

속성은 text 필드로 선언되어야합니다.

모델에서 필드 유형 ( Hash 또는 Array )을 선언해야합니다.

더 많은 정보 : serialize >> apidock.com

어떻게

마이그레이션시

class Users < ActiveRecord::Migration[5.0]
  def change
    create_table :users do |t|
      ...
      t.text :preference
      t.text :tag
      ...
      t.timestamps
    end
  end
end

모델에서

class User < ActiveRecord::Base
    serialize :preferences, Hash  
    serialize :tags, Array
end


Modified text is an extract of the original Stack Overflow Documentation
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow