Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7412561
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T06:33:36+00:00 2026-05-29T06:33:36+00:00

I have 2 models: board.rb class Board has_and_belongs_to_many :posts, :autosave => true end post.rb

  • 0

I have 2 models:

board.rb

class Board
 has_and_belongs_to_many :posts, :autosave => true
end

post.rb

class Post
 has_and_belongs_to_many :boards
end

In my posts_controller.rb

def create
 @post = current_user.posts.new(params[:post])
 @post.save
end

In my view posts I have a form with collection_select field:

<%= form_for(@post) do |f| %>
 <%= f.submit %>
<%= f.collection_select :board_ids, Board.where(:user_id => current_user.id), :id, :name%>
<% end %>

I get with type relation has_and_belongs_to_many the next error:

undefined method `first’ for BSON::ObjectId(‘4f2e61ce1d41c8412a000215’):BSON::ObjectId

:board_ids is an array type board_ids: [] in object Post.

How save the object from field collection_select in this array?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-29T06:33:37+00:00Added an answer on May 29, 2026 at 6:33 am

    The problem here seems to be that you are using a drop down list to map to a multi-valued field (board_ids). So your application is trying to set the board_ids field to a single value (a BSON::ObjectId) when mongoid is expecting an array.

    If a Post can be associated with many Boards (and assuming you don’t have a very large number of boards for a given user) then perhaps a better way to get this working is to use a set of checkboxes rather than a single drop down list.

    <% Board.where(:user_id => current_user.id).each do |board| %>
      <%= check_box_tag 'post[board_ids][]', board.id, @post.board_ids.include?(board.id) %>
      <%= board.name %>
    <% end %>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have three models: category.rb class Category include Mongoid::Document # Relationships has_many :posts, :autosave
So, say I have models like this: class Foo(Model): name = CharField(max_length=200) def latest_comment(self):
Hay, i have a model which houses a board class Board(models.Model): parent_board = models.ForeignKey('self',
In my discussion board I have a Post class. There are two special functions,
I have three models connected via an has_many_through association. class Board < ActiveRecord::Base has_many
I have models like this: class Vendor(models.Model): title = models.CharField() class Product(models.Model): ... vendor
I have models like this: class IdfPracownicy(models.Model): nazwa = models.CharField(max_length=100) class IdfPracaOpinie(models.Model): nazwa =
I have that situation: I have models Item, Region and Country. class Item(models.Model): name
I use flask with flask-peewee and wtfpeewee. So, I have models like that: class
I have two models, Listing and Invitation, associated with has_and_belongs_to_many. I am looking at

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.