Tagged Questions
0
votes
1answer
77 views
Pulling from Array in Embedded Document
I have three documents.
User
List
Food
A list can have many foods and is embedded inside the user document. I have an action in my controller that when an user is done with a food item, loops ...
0
votes
2answers
79 views
Can't save array in Mongoid
I have a has_many relationship with another object. Because of this, Mongoid creates an attribute titled item_ids as an Array so I can conveniently save numerous ids as an array. However, whenever I ...
0
votes
1answer
80 views
Mongoid spacial virtual attribute does not persist
I am using Mongoid Spacial to store coordinates on a Place model. I am geocoding on the client side, and sending two text fields: latitude and longitude. The fields are named correctly, and this ...
0
votes
2answers
41 views
How can I sort a Ruby array into a hash from a key?
I have a Ruby array which looks like:
[
#<Share _id: 507fd5a8ab432a6a35000006, _type: nil, price: {"cents"=>25535, "currency_iso"=>"USD"}, company_id: "507fcdb8ab432ac733000001", ...
1
vote
1answer
43 views
most efficient solution for this array ruby and mongoid
My question is:
is there some most efficient solution for this code in ruby on rails and mongoid odm?
messages_without_responses = Message.all.select{|message| message.sender == current_user || ...
0
votes
1answer
168 views
array to mongoid criteria
This query return an Array on users variable:
users = @users.flat_map {|b| b.followees_by_type('aged') }
I need apply this filter to users:
olds = users.any_of({ :image_filename.ne => nil }, { ...
3
votes
2answers
441 views
Compare string ID to BSON::ObjectId
I have an array of made up of type BSON::ObjectId and I want it to compare against some IDs as strings.
if my_array_of_BSON_ObjectIds.include?(@my_id_as_a_string)
# delete the item from the array
...
2
votes
2answers
888 views
can't convert Enumerator into Array
While working on one application I am getting this error:
can't convert Enumerator into Array
Here is my code, mr_collection is MongoID query.
mr_collection = self.where(query).map_reduce(map, ...
-1
votes
2answers
106 views
Sort Ruby array using the Post objects it contains
I have a Ruby array which contains Post objects (a Mongoid model) with a created_at method returning a Time object. What I want is to sort that array using that method (which is present on every ...
0
votes
2answers
137 views
how to query out entries with a field of blank array by mongoid?
my model is:(with mongoid version2)
class Trip
include Mongoid::Document
include Mongoid::Timestamps
include Mongoid::MultiParameterAttributes
field :images, :type => Array, :default ...
3
votes
1answer
287 views
With Mongoid, can I “update_all” to push a value onto an array field for multiple entries at once?
Using Mongoid, is it possible to use "update_all" to push a value onto an array field for all entries matching a certain criteria?
Example:
class Foo
field :username
field :bar, :type => ...
2
votes
1answer
470 views
validate array mongoid and ruby on rails
I have in model Invitation a field and attribute like:
field :recipients, :type => Array
I have an array with 4 emails in my controller like:
@invitation.recipients = ['', '', '', '']
I want ...
0
votes
2answers
322 views
How to save received string parameters in array field?
How to extract and save array from string parameter? I'm trying convert string beafore_create but this doesn't work. When I comment before_create :waypoints Mongoid throw error:
Parameters: {
...
0
votes
0answers
89 views
How can get/set all of the values of an array using forms in Rails 3.1?
I have generated a model "Test" with a field named 'scale' which is an Array.
For simplicity, lets say it will always be an Array of 20 integers, that represents a scoring scale (i.e. 1 = 5th ...
0
votes
1answer
381 views
Inserting array as single rows into mongodb using mongoid?
i have a ruby array of values. how can i insert them as single entries int omy model using mongoid? any advice?
thanks
edit: okay, i've done it. just converted the file into a csv and imported it ...
0
votes
1answer
205 views
NoMethodError when I push a object into a Doc with mongoid
I'm having this problem, I tried a lot of differents aproachs but
everytime it falls in that error.
Enviroment:
Rails 3.0.5
Mongoid 2.0.1
class User
include Mongoid::Document
field :name
...
2
votes
3answers
5k views
Mongoid - Array management ? insert unique value, remove value if exists?
I am trying to do something rather simple I believe:
1) insert a value in an array field only if that value is not already present
2) remove a value if it exists in the array
I have just no idea ...
11
votes
2answers
3k views
How to get the resultant array from a Mongoid::Criteria without an “each” block
Our application uses ajax very heavily and as a result of this we have statements like var items = #{@items.to_json} in all our views. Now @items is being set in the controller as @items=Item.all. The ...