gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-04 13:15:31 28 4
gpt4 key购买 nike

有没有一种简单的方法可以使用 Rails 以 JSON 格式将数据返回给 Web 服务客户端?

最佳答案

Rails 资源为您的模型提供了 RESTful 接口(interface)。让我们来看看。

模型

class Contact < ActiveRecord::Base
...
end

路线
map.resources :contacts

Controller
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 接口(interface),而无需定义特殊方法来获取所需的响应类型

例如。
/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

关于ruby-on-rails - 如何使用 Rails 通过 Web 服务以 JSON 格式公开数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57665/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com