Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am stuck with what I think is a simple problem. I am creating json and need to have the format be:

[{ "source" : "google / organic", "visits" : 20 }]

And here is what I get:

[{"source"=>"google / organic", "visits"=>20}]

Here is the model (campaign_results.rb)

  def as_json(options = {})
      {   "source" => source,
          "visits" => visits, 
      }
  end

In the controller:

def show
    @campaign_summary = CampaignResults.all
end

In the view:

<%= raw @campaign_summary.as_json %>

Any suggestions on what I should do to replace the "=>" with ":"?

share|improve this question

1 Answer

up vote 1 down vote accepted

Try calling #to_json:

<%= raw @campaign_summary.as_json.to_json %>
share|improve this answer
it seems strange, but works great. thanks for your help. – analyticsPierce Sep 24 '12 at 20:39

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.