Tagged Questions
The respond-to tag has no wiki summary.
11
votes
6answers
4k views
Given a class, see if instance has method (Ruby)
I know in Ruby that I can use respond_to? to check if an object has a certain method.
But, given the class, how can I check if the instance has a certain method?
Ie, something like
...
4
votes
2answers
209 views
Is a type-safe respond_to in scala possible?
Using a case construct for type-safe casting is easily done in scala. The following code ensures that square gets only called on objects which have an according type.
class O
class A extends O {
...
3
votes
3answers
130 views
respond_to with custom format aliasing json format, is this possible?
I have a situation where I'm returning json objects to my application which are built from YML files. Because to parse the yml file and return it as json I always have to do something like this:
...
3
votes
1answer
764 views
Rails Json response encoding
I've a rails controller that respond_to JSON with a wrong encoding.
The site is correctly setup with UTF-8 encoding and the database as well.
The text in my db is well formatted, but in the JSON ...
3
votes
1answer
409 views
rails controller respond_to format with two extensions (e.g. tar.gz)
Is there a mechanism or accepted approach for responding to requests that have a more complicated format extension?
My specific scenario involves returning a plist file. However, I need to sometimes ...
2
votes
1answer
1k views
What means `:location => …` and `head :ok` in the 'respond_to' format statement?
I am using Ruby on Rails 3 and I would know what means :location => ... and head :ok statements in following code, how they work and how I can\should use those.
respond_to do |format|
...
2
votes
0answers
974 views
Working with and Testing Rails ActionController's respond_with
Apologies in advance for the verbosity of this question. If you bear with me I think you'll find it's actually quite simple...just hard for me to explain given my limited Rails domain knowledge.
...
2
votes
2answers
5k views
how can I generate json from respond_to method in rails?
If I have a block of code like this:
def show
@post = Post.find(params[:id])
respond_to do |format|
format.html # show.html.erb
format.xml { render :xml => @post }
end
end
How do I add ...
1
vote
3answers
114 views
How to convert this respond_to options to use Rails 3 version?
respond_to do |format|
if @user.save
format.js { render :nothing => true, :status => :ok, :location => @user }
else
format.js { render :json => @user.errors, :status => ...
1
vote
1answer
49 views
How can I change the mime type of a request after I receive it?
My customers are sending my rails app requests as either XML or HTML. Under rails 2.10 my controller action had a responds_to block with wants.html and wants.xml. My customers set their HTTP headers ...
1
vote
1answer
53 views
Why does format.html fire within a repond_to block when the request is made with Ajax via :remote => true
Ok, I'm clearly confused about the respond_to block in rails. Everyone seems to say that within it you define the the responses based on the type of request. So if inside a create action in a ...
1
vote
2answers
1k views
AbstractController::DoubleRenderError that shouldn't be
I've been getting the following error when I hit this destroy method in a my User controller.
AbstractController::DoubleRenderError (Render and/or redirect were called multiple times in this action. ...
1
vote
1answer
133 views
Controller changes format on variables when publishing
I am a newbie to ROR but catching on quickly. I have been working on this problem for a couple of hours now and it seems like a bug. I does not make any sense.
I have a database with the following ...
1
vote
1answer
335 views
How do I pass layout false inside respond_to block in Rails?
I'm trying to figure out how to make this work. Here is my code, which is not working right now:
respond_with(@addresses) do |format|
format.json {render :json=>@addresses, ...
1
vote
1answer
162 views
Using Prototype, is it possible “redirect_to” avoiding to process the full “js.rjs” code?
In *user_controller.rb* file I have this code:
respond_to do |format|
if test = true
format.js
else
format.js { @yo = true }
end
end
In update.js.rjs file I have this ...
1
vote
1answer
524 views
using respond_to format.js to replace the content of a textarea on rails
I have some saved text in my create controller. If it's not stressful, I'd like it to populate a textarea on the page with the saved text along with displaying the error message fields (which is ...
1
vote
2answers
855 views
XML Parsing Error: junk after document element. Rails builder
I am trying to send send an xml Doc from an action
The XML is created by the following method
def media_xml
x = Builder::XmlMarkup.new
x.instruct!
x.declare! :DOCTYPE, :html, :PUBLIC, ...
0
votes
1answer
40 views
How to make a respond_to by AJAX in Rails 3?
I have a form, that I send with using AJAX. The form is in the FirstsController. I need the form send to SecondsController. The form is sent and data saved. Then I wanna change the form by a text, I ...
0
votes
0answers
38 views
Explanation of respond_to in Rails 3
I know this is very simple, but one of the things about controllers in Rails that confuses me is the respond_to block. I thought this article was going to be the answer but it just didn't do it for ...
0
votes
0answers
226 views
how to get rails 3 button_to helper with remote = true to request json instead of js?
In my template I have:
<%= button_to("Thumbs Up", some_create_path, "data-type" => "json", :remote => true, :method => :post) %>
In the controller I have:
def create
respond_to ...
0
votes
1answer
69 views
Can I do a wildcard with 'responds-to format' in Rails3?
Consider the following code:
respond_to do |format|
format.js { render :layout => false }
format.xml { head :ok }
end
Now I know you can specify a whole bunch of formats, but is there a way ...
0
votes
1answer
355 views
My remote form submission is trying to render the pages/_page.js.haml file, but I want it to be pages/_page.html.haml
I'm using haml so hopefully you can understand the html going on here. It's easier to read in my opinion but some people don't like it :p
I have a form on my edit page that looks like this:
...
0
votes
4answers
206 views
Ruby 1.9.2 Object.respond_to? :hello && Object.hello gives error, why?
While stepping through code today, I noticed something unexpected. This statement:
if Object.respond_to? :hello && Object.hello
#stuff
gives an undefined method error. But why? ...
0
votes
1answer
403 views
respond_to not working with format.js if format.html is present
When using respond_to, my AJAX call only invokes the javascript response if the HTML response isn't present.
I have the following javascript for submitting an edit-in-place action:
...
0
votes
1answer
704 views
override to_xml to limit fields returned
using ruby 1.9.2 and rails 3, i would like to limit the fields returned when a record is accessed as json or xml (the only two formats allowed).
this very useful post introduced me to respond_with ...
0
votes
2answers
692 views
Rails3 and Respond_with problem
I have an application, on which I have two user interfaces.
The first one is for normal users and the second one is for iphone users.
Everything was working fine until i refactored my code within ...
0
votes
2answers
345 views
Rails route for non-resource for csv
I have a method called "revisions", and I want to be able use the same logic but output to csv. I think I'd like to use the FasterCSV gem. What I need is to what to add to my routes in order to get ...
0
votes
1answer
112 views
Using different logic for the same respond_to format in Rails
My Rails application is currently using JSON as the respond_to format for AJAX forms on the site. I'm planning to create a public API for the application, and I'd like to use JSON for it also. How ...
0
votes
1answer
236 views
Ruby on Rails' respond_to causing strange error
There is another respond_to for the usual case, and a special case when a param[:top] is passed in, so there is another respond_to earlier in the code:
respond_to do |format|
...
0
votes
1answer
96 views
where do I put the respond_to if there is an if-statement in the controller in rails?
I have a controller that has if-condition:
def update
@contact_email = ContactEmail.find(params[:id])
if @contact_email.update_attributes(params[:contact_email])
flash[:notice] = ...
0
votes
1answer
376 views
Why is the proper “respond_to” format not getting called?
I'm having a bit of an odd issue. Really too odd to type out, but here goes. Basically I have a controller that refuses to "respond_to" using javascript unless I assign my "chart.generate_xml" to a ...