ruby-on-rails – 如何使用Rails通过Web服务以JSON格式公开数据?

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 如何使用Rails通过Web服务以JSON格式公开数据?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有没有一种简单的方法可以使用Rails将数据返回到 JSON中的Web服务客户端?

解决方法

Rails资源为您的模型提供RESTful接口.让我们来看看.

模型

class Contact < ActiveRecord::Base
  ...
end

路线

map.resources :contacts

调节器

class ContactsController < ApplicationController
  ...
  def show
    @contact = Contact.find(params[:id]

    respond_to do |format|
      format.html 
      format.xml {render :xml => @contact}
      format.js  {render :json => @contact.json}
    end
  end
  ...
end

因此,这为您提供了API接口,而无需定义特殊方法获取所需的响应类型

例如.

/contacts/1 # Responds with regular html page

/contacts/1.xml # Responds with xml output of Contact.find(1) and its attributes

/contacts/1.js # Responds with json output of Contact.find(1) and its attributes
原文链接:https://www.f2er.com/ruby/267449.html

猜你在找的Ruby相关文章