Tagged Questions
0
votes
1answer
55 views
Modify JSON response of embedded object in rails / mongoid
I am trying to modify the JSON in my controller.
I have a projects model that embeds_many images using Mongoid.
Here are the models:
class Project
include Mongoid::Document
field :name, type: ...
0
votes
0answers
88 views
Mongoid: Create embedded documents with a JSON POST request
I am pretty new to Rails and Mongoid and need some help regarding embedded documents. I am using Rails 3.2.12 and Mongoid 3.0.2.
I am trying to update an embedded document with a JSON POST. That is, ...
0
votes
1answer
152 views
Rendering large database record set as JSON in rails
Is there a way to present a large record set in JSON format without consuming large amount of memory? For example I have the following query:
...
records = Records.where(query)
respond_to do |format|
...
0
votes
1answer
63 views
to_json not working in javascript for mongoid object in rails 3.2.11
Following statement in my javascript is giving an error
Uncaught SyntaxError: Unexpected token &
var js_obj = <%= @object.to_json %>;
@object is a mongoid object from the controller.
Can ...
0
votes
1answer
98 views
Rails form to edit JSON object as text
I'd like to make a form that lets a user edit one field of a mongoid object as rendered JSON text. There's a field in the model that my rails app should not understand, but I want to expose a generic ...
2
votes
1answer
178 views
Reducing DB calls when using RABL with mongoid
I have a few scenarios where I would like to do as little DB calls as much as possible via eager loading, but I have not been able to do it well.
Given the 2 scenarios below, how can i change my ...
1
vote
1answer
566 views
Using ActiveModel::Serializer in Rails - JSON data differs between json and index response
I'm using active_model_serializers gem to control the serialization data, and seeing some odd behavior. My code looks like so:
model & serializer
class User
include Mongoid::Document
field ...
0
votes
1answer
67 views
JSON Performance in Rails
I'm running a query on my index action in a Rails app, and if you look at the logs it's pretty fast:
Started GET ...
2
votes
1answer
239 views
Very slow running as_json (Mongoid + Sinatra)
I'm using Sinatra (1.3.2) with Mongoid (2.4.10). I'm noticing that it is taking a VERY long time to convert about 350 mongo documents to JSON.
I added a few benchmark wrappers just to see what is ...
0
votes
1answer
111 views
Add external data to Instance variable in ROR
I have a query written in Mongoid
@result = User.find(:name=>"xxxxx").limit(5)
and I return the data in json as
render :json =>@result.to_json()
Now I want add the total number of user ...
2
votes
1answer
3k views
MongoDB find in array
Ok so I have mongodb JSON / ARRAY
and I am having issues locating categories { name:"hoyts"}
I have tried {categories.name:"hoyts"} and a few others but nothing seems to work PLEASE HELP
this is my ...
0
votes
1answer
273 views
Saving child objects when parsing foreign nested JSON objects in Mongoid and Rails
I'm storing social media postings from a REST API to Mongoid.
I'm using the very basic User/Post model:
class Post
include Mongoid::Document
belongs_to :user
end # post
class ...
0
votes
1answer
285 views
in rails json rendering, how to show a different key name for a particular attribute
I am using Mongoid as my backend and I am in need to return json with an "id" attribute instead of the default "_id" used by mongoid
for instance, I have now
[{
"_id": "4f2d8b971773eb18e6000001",
...
3
votes
2answers
2k views
mongoid document to_json including all embedded documents without ':include' on each one
Given an arbitrary mongoid document how do i convert it to JSON and include any embedded structures without specifically including those structures in my to_json statement.
For example:
...
2
votes
1answer
681 views
How to save data from a json array to the database MongoDB?
How to save the marker coordinates received as json parameter and build it to lat and lng fields with right values? I tried to do this in many ways but it gave everyone fails. Below those that are ...
0
votes
1answer
222 views
Making to_json much more efficient for nested objects
Consider a typical relational structure:
Answer has many comments. comments belongs to a user, and have many likers
answers.to_json(:include => {:comments => {:include => :user, :likers}})
...
0
votes
1answer
235 views
how to have rail 3 model to_json, return only the date and not time?
I have a rails 3 model with a Date field. when i render the model as json, the date field is returning the date and time. It should only return the date, because this is a Date field not a DateTime ...
2
votes
2answers
842 views
Importing a Large Dataset in MongoDB via MongoID
To import a large JSON dataset in MongoDB we have mongoimport utility which works like that:
mongoimport --host xxx.xxx.xxx.xxx --db destination-db -c tags < tmp/source-file.json
Is there a way ...
0
votes
1answer
902 views
JSON serialization except for embeds_one objects in Mongoid?
Given this mongoid "Report" Document object that embeds_one location object:
{
comment: "",
location: {
address: "391 Little Bourke St, Melbourne VIC 3000, Australia",
geocode: {
...
1
vote
1answer
826 views
How do I include the root in my json responses when using Mongoid?
Seems pretty easy with ActiveRecord:
config.active_record.include_root_in_json = true
But I can't find the proper Mongoid documentation
7
votes
2answers
4k views
User auth example in Rails 3, using Devise, OmniAuth, Mongoid, and JSON responses
I have integrated Devise and OmniAuth with my Mongoid ORM setup using the following examples:
https://github.com/plataformatec/devise/wiki/Example-Applications
My client code is mostly JavaScript ...