Added JSON payload retrieval to README

This commit is contained in:
Sdogruyol 2015-11-06 20:49:08 +02:00
parent cb36a38488
commit bbe22e96e3
1 changed files with 10 additions and 0 deletions

View File

@ -81,6 +81,16 @@ Accessing the environment (query params, body, content_type, headers, status_cod
height = env.params["height"]
end
# Easily access JSON payload from the params.
# The request content type needs to be application/json
# The payload
# {"name": "Serdar", "likes": ["Ruby", "Crystal"]}
post "/json_params" do |env|
name = env.params["name"] as String
likes = env.params["likes"] as Array
"#{name} likes #{likes.each.join(',')}"
end
# Set the content as application/json and return JSON
get "/user.json" do |env|
kemal = {name: "Kemal", language: "Crystal"}