0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Railsでxml, html などMIMEタイプごとに返すViewを指定する

Posted at

mime typeによって返すviewを変更する方法です。

例えばxml, htmlへのレスポンスを別々に作成する場合

UsersController.rb
class UsersController < ApplicationController
	def show
    @user = users.find(params[:id])
	respond_to do |format|
      # HTMLのレスポンス
      format.html
      # XMLを使う場合のレスポンス
      format.xml
	    # 指定がない場合のレスポンス
	    format.any
  end

html, xml それぞれに対応したテンプレートは以下のパスに作成します。

app/views/users/show.html.erb

app/views/users/show.xml.erb

MIME TYPE種類

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?