Ich versuche, einen super einfachen JSON-Webservice für ein Nebenprojekt zu erstellen. Allerdings habe ich Probleme beim Konvertieren meiner Objekte in JSON, könnte mir bitte jemand helfen ?
Ich habe folgende Klassen:
class Location
attr_reader :street, :city, :state, :country, :zip, :latitude, :longitude
def initialize(street, city, state, country, zip, latitude, longitude)
@street = street
@city = city
@state = state
@country = country
@zip = zip
@latitude = latitude
@longitude = longitude
end
def to_json
{
'street' => @street,
'city' => @city,
'state' => @state,
'country' => @country,
'zip' => @zip,
'latitude' => Float(@latitude),
'longitude' => Float(@longitude)
}.to_json
end
end
und
class Spot
attr_reader :name, :category, :location, :id
def initialize(id, name, category, location)
@name = name
@category = category
@location = location
@id = id
end
def to_json
{
'name' => @name,
'category' => @category,
'location' => @location.to_json,
'id' => @id
}.to_json
end
end
Bei einer beliebigen Eingabe möchte ich folgendes Ausgabeformat erhalten:
{
"name":"Wirelab",
"category":"Bier",
"location":
{
"street":"Blaatstraat 12",
"city":"Enschede",
"state":"Overijssel",
"country":"Nederland",
"zip":"7542AB",
"latitude": 31.21312,
"longitude":41.1209
}
,
"id":"12"
}
Allerdings ist die Ausgabe, die ich erhalte, folgende:
{
"name":"Wirelab",
"category":"Bier",
"location":"
{
"street\":"Blaatstraat 12",
"city\":\"Enschede\",
\"state\":\"Overijssel\",
\"country\":\"Nederland\",
\"zip\":\"7542AB\",
\"latitude\":31.21312,
\"longitude\":41.1209
}
",
"id":"12"
}
Könnte mir jemand bitte erklären, wie ich das beheben kann?
EDIT:
Ich verwende einen Sintra-Webservice, der ungefähr so aussieht:
get '/spots' do
#json = spots.to_json
spot = Spot.new("12", "Wirelab", "Bier", Location.new("Blaatstraat 12", "Enschede", "Overijssel", "Nederland", "7542AB", "31.21312", "41.1209"))
json = spot.to_json
if callback
content_type :js
response = "#{callback}(#{json})"
else
content_type :json
response = json
end
response
end