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.

For example, i have a script like this:

 Routing.generate('_moderation_profile_confirm',{'id':objectId,'_locale':'en'})

is correct, but when i remove the '_locale' parameter, it send me error like '_locale' must be set. my route name _moderation_profile_confirm contains a '_locale' prefix but how can i send the 'current' locale for the routing manager?

share|improve this question

1 Answer

I supouse you are in twig template:

You can use this shorthand and get current locale:

Routing.generate('_moderation_profile_confirm',{'id':objectId,'_locale':'{{ app.session.locale }} '})
share|improve this answer
I'm in a pure JavaScript file, and i just wanna to know if this locale option is prerequisite. – ferdinandfly Jul 19 '12 at 8:13

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.