我在
Ruby on Rails中创建一个网站,用户可以使用RESTful身份验证登录.有人可以使用html,xml和json获取特定的用户,就像脚手架一样.但是我想添加一种格式:vCard(例如/users/1.vcard).这有一个特定的格式,但是如何定义我自己的格式?使用意见,还是我用另外一种方式?谢谢
解决方法
在/config/initializers/mime_types.rb文件中,为您的格式添加新注册.它应该看起来像这样:
Mime::Type.register "text/x-vcard",:vcard #The :vcard is the important part
之后(您将不得不重新启动您的应用程序来接收更改),您可以像其他任何格式一样回复符号:
# then in your controller action def show respond_to do |format| format.html # render html format.vcard { #render vcard } end end