我正在使用Ruby on Rails 3,我正在尝试设置JSON / XML响应的值。
在我的控制器中我有
respond_to do |format|
format.xml { render :xml => @user.to_xml }
format.json { render :json => @user.to_json }
end
当我为JSON / XML发出HTTP GET请求时,会设置像这些
这样的常用值header:
date:
- Fri, 18 Feb 2011 18:02:55 GMT
server:
- Apache ...
etag:
- "\"0dbfd0ec23934921144bd57d383db443\""
cache-control:
- max-age=0, private, must-revalidate
x-ua-compatible:
- IE=Edge
x-runtime:
- "0.033209"
status:
- "200"
transfer-encoding:
- chunked
content-type:
- application/json; charset=utf-8 #or application/xml; charset=utf-8
http_version: "1.1"
message: OK
read: true
我想添加/设置header
值并添加新参数,例如message2
或header2
。
如何使用format.json/xml { render :json/xml => @user.to_json/xml }
语法执行此操作?
答案 0 :(得分:8)
format.foo { render ... }
事情需要阻止。你可以把任何你想要的东西放在那里:
format.json do
response['X-Message-1'] = 'Hello'
render :json => @user.to_json
end