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'd like to pass a parameter in request URL to the JavaScript code on GAE environment.

For example, following URL was entered.

http://example.com:8080/hello?key=abc

The hello page was rendered with hello.py and hello.tmpl which are shown below respectively.

'''hello.py'''
key = self.request.get('key')

{# hello.tmpl #} 
<html>
  <div id="key">{{ key }}</div>
  <script src="hello.js"></script>
</html>

In order to refer the key specified with URL in hello.js, the function can be written as following.

// hello.js
function() {
  console.log($('#key').text());
};

It works well and meets my original request that a parameter was propagated from the URL to the JavaScript Code.

However, I felt like it's not a smart way. I used div tag as a buffer between URL and JavaScript code. Does anyone know any smarter way to do this?

share|improve this question

1 Answer

You can use data extension instead of adding a div:

<body data-key='{{key}}'>
  <...>
</body>

// hello.js
function() {
  console.log($('body').data('key'));
};
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.