On Aug 9, 6:19 am, WilsonOfCanada <w...@sfu.ca> wrote:
> I tried that before, but it only seems to work when it is used on
> the .html file.
>
> onchange="changeArea('{{ list_areas.BC|safe|escapejs}}')
>
> I need it to be onchange="changeArea('{{ list_areas|safe|escapejs}}')
> so the function can use list_areas (My javascript and html are on
> separate files).
>
> On .js file,
>
> If I use:
> function changeArea(selectedAreas)
> {
>         alert({{list_areas.BC}});
>
> }
>
> with or without the |escapejs would cause the entire javascript not to
> work.
>
> If I use:
> function changeArea(selectedAreas)
> {
>         alert(selectedAreas.BC);
>
> }
>
> or
>
> function changeArea(selectedAreas)
> {
>         alert(selectedAreas["BC"]);}
>
> would be undefined.
>
> However, if it is:
>
> function changeArea(selectedAreas)
> {
>         alert(selectedAreas[0]);
>
> }
>
> I will get "{"
>
> Thanks again.  (If I missed the answer in the docs, sorry :) )


You are simply not thinking about this logically.

The 'html file' is a Django template. It is processed by Django's
templating engine, so template variables and tags are replaced
correctly, even within inline javascript.

The 'js file' is not a Django template. It is a static file -
presumably you are serving it via Apache or the development server's
static.serve view. Because it's not being processed by Django's
templating engine, template variables and tags are not replaced but
included as-is.

If you want to include Django variables in javascript, the way to do
it is as you did at first - have a small <script> block in your actual
template, which sets the various things you need, and the external .js
file references those.
--
DR.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to