Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Can anyone help me how to decode JSON object from Rails. Basically I have javascript function that encode JSON object and pass it to rails.

function save(){
----
----   
notesArray.push({ Index: i, Title: title.val(), Content: content.val()});

// json encode it
var jsonStr = JSON.stringify(notesArray);

//sending to rails
$.post('monkey', {notes: jsonStr});
}

I don't know how to decode this in my controllers in Rails. I also want it to save it in my database(SQLite). Any idea how to do this?

share|improve this question

1 Answer

obj = ActiveSupport::JSON.decode(json_string)

But it's slow, check out this for a much faster extension: http://flori.github.com/json/

share|improve this answer

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.