Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は非常に単純な仕事をしていますが、混乱しました。
非常に単純な JSON で応答するアクションが必要です。
{"valid": true}
コントローラに何を書く必要がありますか?
render :json => ......
render :json => { valid: true }
Rails はto_json自動的に呼び出す必要があります。
to_json
やってみました:
render :json => {"valid" => true}