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.
名前とタイトルの値を取得するテキスト ボックスを含むフォームがあります。そして、送信ボタンがあります。テキスト ボックスの値を取得し、以下に示す形式で API に送信します。
{ "entry": { "name":"api-workspace", "title":"API Workspace" } }
ルビーを使ってどうすればいいですか?可能であればサンプルコードを教えてください。
値はparamsハッシュでコントローラーに渡されます。nameテキストフィールドの名前が次のとおりであり、titleこれが機能するはずであると仮定します。
params
name
title
json = { entry: { name: params[:name], title: params[:title] } }.to_json puts json # => {"entry":{"name":"api-workspace","title":"API Workspace"}}