Rails에서 간단한 json 응답을 보내려면 어떻게 해야 합니까?
사용자가 입력한 데이터에 따라 json 응답을 보내야 하는데 간단한 json 요청을 보내지 못하고 있습니다.
저는 http://paydrotalks.com/posts/45-standard-json-response-for-rails-and-jquery이라는 기사를 팔로우했습니다.
MimeType 추가:
Mime::Type.register_alias "application/json", :jsonr, %w( text/x-json )
컨트롤러에서 다음을 수행합니다.
def checkname
respond_to do |format|
format.jsonr do
render :json => {
:status => :ok,
:message => "Success!",
:html => "<b>congrats</b>"
}.to_json
end
end
end
그러나 화면은 비어 있으며, 이 동작에 대한 GET 응답을 작성했을 때 fiddler2의 응답 코드를 다음에 나타냅니다.
HTTP/1.1 406 Not Acceptable
Content-Type: text/html; charset=utf-8
X-UA-Compatible: IE=Edge
Cache-Control: no-cache
X-Request-Id: 14a8467908d9ce322d054607efdacf92
X-Runtime: 0.011000
Content-Length: 1
Connection: keep-alive
Server: thin 1.4.1 codename Chromeo
내가 뭘 잘못하고 있지?
커스텀 MIME 의 처리에 대해서는 확실하지 않지만, JSON 의 렌더링에 대해서는, 다음의 조작이 가능합니다.
def testme
respond_to do |format|
msg = { :status => "ok", :message => "Success!", :html => "<b>...</b>" }
format.json { render :json => msg } # don't do msg.to_json
end
end
또한 어떤 버전의 Ruby와 Rails를 사용하고 있는지 알려주시면 도움이 될 수 있습니다.
보통 다음 방법을 사용하여 json 데이터를 반환합니다.
msg = {:token => token, :courseId => courseId}
render :json => msg
한 가지 간단한 방법은 다음과 같습니다.
def my_action
render :json => {:name => "any name"}
end
가장 간단한 방법은render json: {foo: 'bar'}
언급URL : https://stackoverflow.com/questions/12385345/how-to-send-simple-json-response-in-rails
'programing' 카테고리의 다른 글
타입 스크립트인터페이스를 다른 파일로 선언 및 Import하는 방법 (0) | 2023.03.28 |
---|---|
인라인 프리 포맷? (0) | 2023.03.28 |
reactJs가 event.persist()가 있는 이벤트에서 상태를 설정할 수 없습니다. (0) | 2023.03.28 |
Mongoose findByIdAndUpdate가 올바른 모델을 반환하지 않음 (0) | 2023.03.28 |
RestTemplate PATCH 요청 (0) | 2023.03.28 |