Tagged Questions
0
votes
0answers
20 views
Remotipart getting ajax response
i am using Remotipart to upload files. The Rails-Controller handles the file but i cant figure out how to get the following ajax response. Here is my js code.
$file.children(".description").html(
...
0
votes
2answers
33 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
2answers
36 views
A bit confused on how to respond to rail 3's remote link_to's…
I use rails remote => true on form's all the time. In jquery I use the 'ajax:before' and 'ajax:success' to pick up the events on the page and in the controller I do the following to respond to ajax ...
2
votes
0answers
32 views
Parallel request from rails controller action
I have a usecase where when an action of the controller is called, it triggers 3 http request to other urls. I need to parse the response of those requests , combine them and then render the view. How ...
0
votes
1answer
27 views
know the type of the response
I want know the type of the response of an action controller (json, html, xml)
before the instructions:
respond_to do |format|
format.html{
...
end
Is possible?
Thanks
1
vote
1answer
281 views
How to send json response from controller to jQuery and inspect it?
I have this problem : I'm checking user email in controller and sending json successfull response if it is already taken and add css styling of input, also I need to prevent submit and add some ...
0
votes
1answer
70 views
Instant Rails 2.0 does not update gems and showing HTTP response 302 error
I installed Instant Rails 2.0 on my windows 7 machine.
It has below versions :
Rails 2.0.2
gem 1.0.1
ruby 1.8.6
I am trying to update gem using command >gem update
It shows message as below :
...
0
votes
1answer
47 views
Response type in view
I would like to use my form partial for html and js requests. For the second i have to put :remote => true into form_for tag.
Is it possible to read the response type (html, js, ...) and use this ...
0
votes
1answer
55 views
Rails: table column returning nil (unresponsive)
This is the continuation of a previous problem that I was able to solve: Parameters not saving properly (Rails)
But now I've encountered a stranger issue. Although I can get the parameter to save, it ...
1
vote
1answer
335 views
RSpec controller response body is returning string name of response class instead of response
I am testing a controller in rails using rspec. The response body is just the string of the response instance and not the actual response. My test is below.
require 'spec_helper'
describe ...
0
votes
1answer
602 views
Rails: ensure that $.post from jQuery is received as format.json in Controller
I have a jQuery script that is trying to post data like so:
$.post({
$('div#location_select').data('cities-path'),
{ location_string: $('input#city_name').val() },
});
This works, but for ...
0
votes
1answer
277 views
Mock web responses in Rails
We are creating a web application which will communicate with an API of another service to pull data etc..
The problem is that the API is not built, however we do the the JSON format what will be ...
0
votes
1answer
144 views
How to make GlassFish web server use JRuby on Rails?
I installed Ubuntu, GlassFish web server, installed JRuby on Rails using GlassFish's admin tools, deployed my application from .war archive. The problem is only - when I attempt to run this web ...
0
votes
2answers
199 views
Rails: How to have no response until an event triggers
I don't know if Rails has a way to do as following:
Receive a request
Put the request into the monitor list until an event triggers
Finish the request but does not return any response to the client ...
1
vote
2answers
180 views
Ruby app responding until stack goes too deep
I'm at a loss here. I have a fairly simple thing going but seem to run into problems a lot with this. I have straight forward web crawler in the works. People post requests and send it on to the ...
1
vote
2answers
550 views
Trouble on handling jQuery.ajax responses in a controller
I am using Ruby on Rails 3.0.7 and jQuery 1.6.1. I am trying to implement an AJAX request using the jQuery $.ajax() syntax and I have a problem on the response for which is triggered always the error ...
1
vote
0answers
231 views
Rails 3: Insert HTML-Snippets into responses within a gem
I do have a question concerning the development of a gem for Rails 3.
I would like to insert specific HTML snippets/partials/fragments (e.g. a form or an image on a fixed position) into every HTTP ...
0
votes
1answer
1k views
Rails respond_with nothing?
I have a create action in one of my controllers which responds to ajax and html requests. Inside the create action I set an instance variable (@location) using a find_or_initialize_by_such_and_such. ...
0
votes
1answer
48 views
obtain :title field in controller
I'd like to store page titles in some place for later use. I used nifty-generators to generate layout.
How to access value, which was set by title() method in view? I need to catch it in controller. ...
1
vote
1answer
172 views
Retrieving error data from a web service application
I am using Ruby on Rails 3 and I am trying to retrieve error data from a web service application after making to that an HTTP POST request. I would like to receive that data including the errors root.
...
0
votes
2answers
938 views
How to test a javascript redirect with RSpec?
I am using a xhr :post to interact with a controller, and I am expecting a redirect.
In the js.erb i have window.location.href = address .
Testing it manually, the browser gets redirected properly.
...
2
votes
1answer
975 views
How to set values of a JSON/XML response in 'format.json/xml { render :json/xml => @user.to_json/xml }'?
I am using Ruby on Rails 3 and I am trying to set values of a JSON/XML response.
In my controller I have
respond_to do |format|
format.xml { render :xml => @user.to_xml }
format.json { render ...
4
votes
1answer
422 views
How to get rid of charset on response header in Rails
I am trying to make a file download controller, but unfortunately rails seems to be hell bent on not letting me remove charset from header
Content-Type: application/x-octet-stream; charset=utf-8
I ...
0
votes
1answer
828 views
Problem using 'responds_to_parent' with an iframe and AJAX to upload a file
I followed instructions from the "AJAX file uploads in Rails using attachment_fu and responds_to_parent" article. In my case I am using Ruby on Rails 3 and Paperclip.
What I made is the following:
...
0
votes
1answer
172 views
How to append to an XML response an error attribute using Ruby on Rails 3?
I am trying to implement REST APIs, so in my RoR3 application I have XML responses. Before to pass to a consumer the XML, I wuold like to check if there are errors somewhere and, if so, append and ...
3
votes
2answers
389 views
Threading in Rails - do params[] persist?
I am trying to spawn a thread in Rails. I am usually not comfortable using threads as I will need to have an in-depth knowledge of Rails' request/response cycle, yet I cannot avoid using one as my ...
13
votes
3answers
10k views
How to customize to_json response in Rails 3
I am using respond_with and everything is hooked up right to get data correctly. I want to customize the returned json, xml and foobar formats in a DRY way, but I cannot figure out how to do so using ...
1
vote
2answers
424 views
Slow request processing in rails, 'waiting for server' message
I have a quite big application, running from inside spree extension. Now the issue is, all requests are very slow even locally. I am getting messages like 'Waiting for localhost" or "waiting for ...
12
votes
5answers
4k views
In Rails, how do you functional test a Javascript response format?
If your controller action looks like this:
respond_to do |format|
format.html { raise 'Unsupported' }
format.js # index.js.erb
end
and your functional test looks like this:
test "javascript ...
0
votes
1answer
188 views
find(:all) and then add data from another table to the object
I have two tables:
create_table "friendships", :force => true do |t|
t.integer "user1_id"
t.integer "user2_id"
t.boolean "hasaccepted"
t.datetime "created_at"
t.datetime ...
