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.

using Backbone.js after calling collection.create() i want to redirect my page to the link which is having currently added record's unique id. this link(means link on which my page is redirected) should also pass to Backbone.sync.

share|improve this question

1 Answer

If I understand your question correctly (which is not easy), it seems to me you could mean something like adding

document.location.replace(<model>.id)

into your models initialize function. However, I dont understand what you mean by "this link should also pass to Backbone.sync. Please clarify your question (and work on your accept rate)

share|improve this answer
i edited my question. – priyanka patel Mar 7 '12 at 5:05
I still dont understand what you mean by "the link should pass to BAckbone.sync". Should the link be passed to Backbone.sync as an argument? If that is what you mean: it already is passed indirectly via the unique id in the models. – joidegn Mar 7 '12 at 12:41

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.