plone - Use TAL:defined variable in javascript - Stack Overflow

I'm creating a page template for a plone-based website. I've defined some variables using the

I'm creating a page template for a plone-based website. I've defined some variables using the template attribute language:

<tal:macro metal:define-macro="sample" tal:define="var python: here.getThisVar();">

Now I would like to use var in an extern javascript file, that I call by clicking a button inside my template. How can I transfer my variable, that I can work with it in my javascript file?

I'm creating a page template for a plone-based website. I've defined some variables using the template attribute language:

<tal:macro metal:define-macro="sample" tal:define="var python: here.getThisVar();">

Now I would like to use var in an extern javascript file, that I call by clicking a button inside my template. How can I transfer my variable, that I can work with it in my javascript file?

Share Improve this question asked Nov 16, 2013 at 9:31 tsabschtsabsch 2,2211 gold badge22 silver badges32 bronze badges
Add a ment  | 

3 Answers 3

Reset to default 8

In your template define a javascript variable by writing it out using TAL like this:

<script type="text/javascript" tal:content="string:var MY_VAR=${view/myVar};"></script>

Now MY_VAR should be available in scope of your external js as long as you call it after the line above...

Another way: inject your variable into HTML using an HTML 5 data attribute::

<div id="myVar" tal:attributes="data-myVar python:here.getThisVar();">

Then read it using JAvaScript/jQuery::

$('#myVar').data('myVar');

There are a variety of ways to do it. All involve constructing Javascript code as if it's text, then returning the result for insertion into a page or rendering as a JS resource in the javascript registry.

If you'd like a robust example that includes provisions for message translatability and works with the JS resource registry, see the way Plone itself does it: https://github./plone/Products.CMFPlone/blob/4.2.7/Products/CMFPlone/browser/jsvariables.py

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743625587a4480481.html

相关推荐

  • plone - Use TAL:defined variable in javascript - Stack Overflow

    I'm creating a page template for a plone-based website. I've defined some variables using the

    20小时前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信