ユーザーが入力したデータに応じて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
1つの簡単な方法は次のとおりです。
def my_action
render :json => {:name => "any name"}
end
最も簡単な方法はrender json: {foo: 'bar'}