0
votes
1answer
18 views

Add a single attribute to a model's Json

I have the following code in one of my controllers; render :json => Article.order("ID Desc").limit(3) Which outputs an array of articles like: [{"id":1, "content":"Blah"},{"id":2, ...
0
votes
1answer
30 views

Rails with jQuery + AJAX fundamentals

I've been given a task to do a simple Task Manager on Ruby On Rails. It's pretty simple for me but there is one issue. Everything has to be "ajaxified" and data should be passed around in JSON. How I ...
0
votes
0answers
24 views

how to fetch raw() function enabled content using json in ruby on rails

I have one rails application where I have one model posts. Post model having two attributes - "title" & "content". I am using ckeditor for my content. Here is my ckditor snapshot When I save ...
0
votes
1answer
21 views

JSON Returned From Rails Server via AJAX fails to run

I have a simple ajax post to the server.. $(".invite-team-members-submit-btn").click(function() { $.post("invite_team_member", { token: $("#token").val(), email: $("#email").val(), ...
0
votes
2answers
30 views

Rails controller respond_with json from two models

I want to respond_to :json in my locations_controller from both my location and beer models. My locations controller looks like this class LocationsController < ApplicationController respond_to ...
1
vote
1answer
32 views

Completed 406 Not Acceptable in 773ms

My client app sends JSON encoded POST to rails server but the server shows 406 error and doesn't respond to json. UsersController create # POST /users # POST /users.json def create @user = ...
0
votes
1answer
20 views

TIme.now and Created_At different formats?

Ive noticed that in a model the created_at attribute when rendering a model to json has the format like: 2013-05-20T22:12:31Z and calling Time.now and rendering to json gives a format like: ...
0
votes
1answer
32 views

How to send data from an Android app to a Rails server? JSON or Alternatives? [closed]

When an Android client has to make a POST request to a server, I can send the data as URL parameters in the URL. But the URL can become very big. So, I want to send the data in JSON format. Is doing ...
-2
votes
1answer
31 views

Rails Database Entry, Values are all question marks

I am trying to run a create method in rails, to insert items into a database. The code for my create is as follows: def create @song = Song.create ( { :song => params[:song], :artist => ...
1
vote
1answer
31 views

How can I create this JSON structure with JBuilder and Rails?

TL;DR: How can i use jbuilder to create JSON that looks like this? [ {}, // Your new pagination state [{}, ...] // An array of JSON objects ] Longer version: I am trying get pagination ...
0
votes
1answer
18 views

How to fix rails api testing error?

I am new to creating an API with Rails and am trying to create a test. require "spec_helper" describe "/api/v1/iosapps", :type => :api do context "view all apps" do let(:url) { ...
0
votes
2answers
18 views

GET request inside POST API endpoint interferes with 'respond_with'

After reading Stored Android Accounts for Authentication of Rails + Devise Accounts I'm trying to setup a Rails 3 API endpoint that can verify an OAuth obtained token through a GET request to Google. ...
0
votes
0answers
13 views

Prevent redirections when using Omniauth Registration

I am using Omniauth to authenticate my JSON API. After submitting to /auth/identity/register, I want to return the results without redirecting the user. How can this be done? In order to allow ...
0
votes
1answer
21 views

Can I make Rails' CookieStore use JSON under the hood?

I feel like it should be obvious doing this from reading the documentation, but maybe somebody can save me some time. We are using Ruby's CookieStore, and we want to share the cookie with another ...
0
votes
1answer
19 views

Accessing method in mapping block for tire/elasticsearch

I have a method that returns a hash: def image_hash images = { small: 'http://www.example.com/image1.png', medium: 'http://www.example.com/image2.png' } end I need to index it as part ...
0
votes
1answer
77 views

How to create JSON string in rails app

So I'm using TimelineJS (http://timeline.verite.co/) and I'm in a Rails app. And I need to find out how to generate a suitable JSON string for use with TimelineJS. So given the demonstration JSON ...
1
vote
1answer
25 views

Serialize delegate in rails

I have 3 models in Rails: User, UserProfile and Post Something like this: class Post < ActiveRecord::Base attr_accessible :content, :post_type belongs_to :user delegate :fullname, :to ...
0
votes
0answers
13 views

higher payload with multiple unicorn worker resulting in MulitJSON::LoadError

The problem I am facing is weird. whenever there is one unicorn process with single worker I don't get any kind of MultiJSON::LoadError but whenever there are many unicorn workers I get ...
1
vote
0answers
198 views

How to install json 1.8.0 on windows

Let me explain the context first, I want to create a server for Redmine. While following the steps of this site: ...
0
votes
0answers
16 views

Getting the Request Env in a worker

I'm using the Mixpanel Gem for server side event tracking. I chose to use the Resque implementation. As you can see in the example, in the UsersController, you have to pass the env as a hash because ...
0
votes
1answer
45 views

Searching for attributes of name in a JSON decoded hash

I have a JSON file consisting of an array of galleries, each of which has its own array of photographs: [ { "title":"Some Title", "photographs":[ { "title": "Boat Ramp" ...
1
vote
2answers
64 views

JSON Parsing issue in Rails

I am seeing a strange issue in Rails. Request Body (request.body): renewals[][driver_1][dl_number]=123& renewals[][driver_1][expiration_date]=20130513& ...
0
votes
1answer
36 views

How to globally PREVENT json rendering in rails?

I have a rails application in which most of the actions respond to json. Is there any "switch" I can turn off to prevent all the controllers from responding to json despite the respond_to method ...
0
votes
1answer
39 views

LinkedIn API JSON - What Am I Doing Wrong?

All I want to do is store LinkedIn title and Id's of group posts to my Article model. This should happen on: irb> Article.update_from_linkedin_group I have spent a lot of time and tried a lot of ...
0
votes
0answers
40 views

Python's stdin.readline() to Ruby/Rails

I am converting some Python code to Ruby for use in a Rails app. Page1 posts some JSON data to Page2 and then Page2 contains the Python code sys.stdin.readline() to read the posted JSON data and then ...
0
votes
1answer
22 views

json and rails 3 http request

Having a page which contains list of users of my site in json format .I am using jquery getJson to get the dat from that url but I need these page not to be accessible if the user tried to open it by ...
0
votes
1answer
21 views

How to render multiple nested parameters as JSON?

I have user object with cart child (cart belongs_to user). I am developing custom application where I need to return few items in JSON: user with cart as child object and products object aswell. I ...
1
vote
3answers
52 views

How to get the whole array of name in one array object using json?

In my code,i am parsing a JSON object like [{"name":"karthi"},{"name":"shreshtt"},{"name":"jitu"},{"name":null},{"name":null},{"name":null},{"name":null}] In this, I want to collect all names in an ...
0
votes
0answers
41 views

How to write the json file for my code?the parsing data its not displaying in android also?

i want to parse my data by ROR using Json,i want to parse all the data as name in an array hotelscontroller.erb respond_to :json, :xml def index @hotels = Hotel.all respond_to do |format| ...
0
votes
0answers
21 views

rails format.js AND format.json [duplicate]

Can you force rails to respond to both, simultaneously? I'm calling for json, but I want the .js to fire every time as well. My buddy accomplished this by calling for the js in the response of the ...
0
votes
0answers
42 views

ajax returns JSON, and I also want to fire a js call

find.js $(document).ready(function() { $("#find_user #email").select2({ width: '400px', placeholder: "Find user...", minimumInputLength: 1, multiple: false, ajax: { // instead ...
0
votes
1answer
32 views

Map object and nested object to model using Ruby on Rails

I have an object like {"Result":[{ "Links":[{ "UrlTo":"http://www.example.com/", "Visited":1364927598, "FirstSeen":1352031217, ...
0
votes
2answers
68 views

select2 AJAX'd to a model, configuration

So, I just discovered select2. Awesome. Now I'm trying to figure out how to use it, server side with ajax / json. All of the examples I see, everywhere, show using select2 with JSONP to retrieve ...
0
votes
1answer
19 views

Adding strings to Rails JSON output

I need to output custom JSON in order to be backwards compatible with existing software, which is written in Javascript, so I need to wrap my JSON with "parseDate(" at the beginning of it, and ");" at ...
-1
votes
1answer
67 views

How to get data and how to write the server side code using json in Ruby on rails

I created a ROR project by using scaffolding, just created one basic project. How would I go about passing the data using json which must be obtained from the URL? In the mentioned code below, I have ...
0
votes
3answers
53 views

How do I manipulate a JSON object returned by AJAX?

I have this jQuery in my Rails app: $('#rankings_link a').click(function(){ $.ajax({ dataType: 'json', contentType: 'application/json', url: '/rankings', type: 'get' ...
1
vote
0answers
46 views

How to write Client side(Android json code) for scaffolding ROR?

I have ROR scaffolding server side code,now i dont know how to write client side code in android json. My scaffold o/p is [http://localhost:3000/hotels][1] and it displays like this Listing hotels ...
-1
votes
0answers
25 views

using rails to access data created in a controller

Is it possible to access the data from a controller in a different controller. For example, I have an admin controller setup to handle all posts, edits, and destroys setup by rails generate scaffold ...
0
votes
1answer
20 views

rails jbuilder - just an array of strings

i have a controller that returns an array of ActiveRecord objects and a jbuilder view to generate the json (all standard stuff). works great if i want for example an array of hashes. so for example i ...
2
votes
0answers
47 views

json not responding from the model the way I'd like to think - autocomplete select2 with rails

So, I just discovered select2. Awesome. Now I'm trying to figure out how to use it, server side with ajax / json. I'll get right to the nitty gritty. json returns a value, but the searchbox ...
0
votes
1answer
27 views

Accepting a string formatted date using Rails and JSON

I'm trying to get a Rails model to accept a date via a JSON message produced by an PHP cURL request. The message is sent to the model's create controller. The model that I'm passing the message to ...
0
votes
1answer
36 views

Rails route accetping http and json requests

I'm creating a REST api using rails, and I have a simple question related to Routes and how to accept requests for my api. In my routes file I have the following code: namespace :api do namespace ...
0
votes
2answers
34 views

Strange JSON response (“ ”=> ,) in rails app

I'm getting a json response from the forecast.io api with JSON.parse(open("https://api.forecast.io/forecast/api-key/latitude,longitude").read) And it looks like this {"latitude"=>58.5942, ...
0
votes
0answers
37 views

How to do json authentication with devise in ror

I want to do JSON authentication with devise in ROR. I managed to config devise to response with Json. But I do not how to proceed next. In my understanding, when log in , I need to get a session ...
0
votes
1answer
61 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: ...
1
vote
1answer
102 views

Error with rails after update to 4.0.0.rc1

recently I have updated to rails 4.0.0.rc1 and I have been experiencing a few errors. I am currently using RVM as well. After creating a rails 4 app and running 'rails s' or 'rspec rails' i got the ...
0
votes
2answers
38 views

Simple join between two tables in Rails

I am building a rails application to work as a back end for APIs. (using grape APIs) I have two tables (user, comment) where a user has many comments and a comment belongs to one users. I am trying ...
0
votes
3answers
69 views

Making JS request to my Rails API

I am new to rails. I am creating a basic rails-api. Trying to add user to my model using JS request ... Here is my HTML file: (add-user.html) <script type="text/javascript" charset="utf-8"> ...
0
votes
1answer
40 views

Custom formatting for JSON from a Rails controller

I have two rails models: A Milestone has many Tasks A Task belongs to a Milestone In my controller I call the following: @milestones = Milestone.all render :json => @milestones.to_json(:include ...
0
votes
1answer
31 views

Possible to ignore a line of code and reload page on a crash?

I have soundcloud URLs embeded using a gem called auto_html. Every now and then my site randomly crashes with the an error thats seems to be a timed out request from too much traffic on soundcloud? Is ...

1 2 3 4 5 29