The respond-with tag has no wiki summary.
17
votes
2answers
1k views
rails 3 response format and versioning using vendor MIME type in the Accept header
Preamble:
I investigated how to version an API and found several ways to do it. I decided to try peter williams' suggestion and created new vendor mime types to specify version and format. I could ...
8
votes
3answers
4k 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 ...
6
votes
1answer
3k views
Understanding Rails 3's respond_with
Utilizing ActionController's new respond_with method...how does it determine what to render when action (save) is successful and when it's not?
I ask because I'm trying to get a scaffold generated ...
5
votes
1answer
738 views
Rails routing error with respond_with when creating nested resource
I'm having the following problem with a simple Rails 3 app I'm creating. It is driving me batty.
My model:
class Vehicle < ActiveRecord::Base
has_many :vehicle_pictures, :dependent => ...
5
votes
1answer
542 views
Rails 3: Proper way to Delete resource using respond_with
I'm trying to DRY up a controller by incorporating respond_with. When I do, following some instructions in a Railscast, I get things mostly working. The problem lies in the redirect after deleting a ...
4
votes
1answer
83 views
How can I simplify this Rails 3 controller method
I currently have this method in a controller:
def show
property = Property.find(params[:id])
respond_to do |format|
format.xml { render :xml => property.to_xml(:except => [:address1, ...
4
votes
1answer
772 views
respond_with redirecting when format=json
I'm encountering a strange behavior in my controllers. They seem to occasionally want to redirect instead of render a json response.
respond_to :json, :html, :js
def create
@favorite = ...
2
votes
2answers
383 views
How to respond_with multiple objects in Rails 3.1
I have a route for example
POST /interaction.json
where the client posts a new interaction. Normally my controller would look like
class InteractionController < ApplicationController
def ...
2
votes
5answers
1k views
How to DRY up Rails 3 controllers by overriding methods like respond_with?
I'm trying to create a JSONP API for my Rails 3 application. Right now in my controllers, I have a lot of actions which follow this pattern:
# This is from my users_controller.rb, as an example
def ...
2
votes
0answers
1k 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.
...
1
vote
1answer
79 views
Including “type” attribute in json respond_with Rails 3.1
It seems that when returning an object containing a "type" attribute as JSON from a Rails 3.1 application, the "type" attribute is not included. Assume I have the following:
A model with ...
1
vote
1answer
65 views
respond_with do not redirect to index.html.erb
I need help with the responder respond_with, 'cause when I create a new post (in this case) It doesn't redirect to the location specified. What can be?. This is the piece of my code that creates a new ...
1
vote
0answers
44 views
Specify flash in respond_with
Rails 3 has a nice feature to save writing flashes on a separate line:
redirect_to @product, :notice => "Successfully created product."
It would be great with respond_with, but not supported. ...
1
vote
3answers
143 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
246 views
respond_with is asking for location on error
I have a pretty standard authenticate method
private
def authenticate_user
@current_user = User.find_by_authentication_token(params[:token])
unless @current_user
error = { :error ...
1
vote
1answer
300 views
Shortening up respond_with( :include => xxx)
I'm looking for a way to shorten up the :include => :child inside a respond_with which generates json.
Here is an example, not sure if it is even possible, but I would like to find out.
In the ...
1
vote
0answers
455 views
JSON, respond_with, and nested resources routing error?
Hey Everybody, Thanks in advance for checking out my question.
I've got nested routes like so:
resources :users do
resources :avatars
end
And upon creating a user, I also create an avatar like ...
1
vote
4answers
1k views
Rails 3 respond_with json question
Having trouble with generating some json. I am trying to render an
single active record result to json like this:
@data = User.find(1)
respond_with(@data, :include => :status)
The json result ...
0
votes
0answers
65 views
Couchrest_model validation messages on casted models
Assuming the following setup:
class Parent < CouchRest::Model::Base
property :title, String
property :child, Child
validates :title, :presence => true
end
class Child < Hash
...
0
votes
1answer
73 views
respond_with is redirecting to specified location even on validation errors, in rails3
When using location in respond with, it is ignoring validation errors and redirecting to the specified location. Is this expected behavior?
I checked in the responder module that it checking if there ...
0
votes
0answers
86 views
rails 3.1 ckeditor passenger phusion missing template
I have ckeditor working in my development environment with no complaints. I followed this sample app to get this working.
https://github.com/fxposter/rails_3_1_with_ckeditor_and_carrierwave
The ...
0
votes
1answer
45 views
In a Rails view how do I reference the object passed to respond_with in the controller?
Say I have the following:
class ProjectsController < ApplicationController
responds_to :html
def show
@project = Project.find(params[:id])
respond_with(@project)
end
end
class ...
0
votes
1answer
220 views
(Missing) Steps to support iPhone in new Rails 3 app
What step am I missing? The view being returned to my iPhone is coming from application.html.erb and index.html.erb
Step 1: In config/initializers/mime_types.rb uncomment the declaration line for the ...
0
votes
2answers
478 views
Rails controller processing as HTML instead of XML
I've recently upgraded from Ruby 1.8.6 and Rails 2.3.4 to Ruby 1.9 and Rails 3.0.3.
I have the following controller:
class ChartController < ApplicationController
before_filter :login_required
...
0
votes
1answer
758 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
706 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 ...