respond-with
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[详细]
2023-04-05 22:57 分类:问答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.[详细]
2023-03-25 05:17 分类:问答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:[详细]
2023-03-05 12:08 分类:问答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:[详细]
2023-02-22 21:06 分类:问答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[详细]
2023-02-10 06:41 分类:问答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 fi[详细]
2023-02-05 15:56 分类:问答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:[详细]
2023-02-04 23:49 分类:问答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).[详细]
2023-02-04 11:30 分类:问答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.[详细]
2023-02-04 05:52 分类:问答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:[详细]
2023-01-31 14:20 分类:问答