gpt4 book ai didi

ruby-on-rails - 限制 rails Controller 响应中的特定字段

转载 作者:行者123 更新时间:2023-12-04 01:18:23 24 4
gpt4 key购买 nike

我有一个 Controller Action ,如

def index
@videos = Video.all.to_a

respond_to do |format|
format.xml { render :xml => @videos }
format.json { render :json => @videos }
end
end

视频有属性 nametitle .

我希望返回的 xml 只包含 title .

我如何从响应中限制它。

最佳答案

这样做:

def index
@videos = Video.all

respond_to do |format|
format.xml { render :xml => @videos.to_xml( :only => [:title] ) }
format.json { render :json => @videos.to_json( :only => [:title] ) }
end
end

您可以在 the serialization documentation 上找到更多信息。 .

关于ruby-on-rails - 限制 rails Controller 响应中的特定字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6919147/

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