如何从rails中的respond_to方法生成json?
如果我有这样的代码块:
def show
@post = Post.find(params[:id])
respond_to do |format|
format.html # show.html.erb
format.xml { render :xml => @post }
end
end
我如何添加类似
format.json
任何提示、指针、想法的内容,我们很高兴...
If I have a block of code like this:
def show
@post = Post.find(params[:id])
respond_to do |format|
format.html # show.html.erb
format.xml { render :xml => @post }
end
end
How do I add something like
format.json
Any tips, pointers, ideas gladly welcomed...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它就像其他格式一样,只是您使用
render :json
代替。It's just like the other formats except that you use
render :json
instead.或者您可以将其作为 javascript 处理
,然后您只需最后使用“.js”访问您的操作即可。
or you can handle it as javascript
then you just access your action with ".js" in the end.