On Tue, Aug 11, 2009 at 2:53 PM, WilsonOfCanada <w...@sfu.ca> wrote:

>
> I want to access the string from the list that is in the dictionary:
>
> function changeArea()
> {
>                alert({{list_areas.British_Columbia}});
> }
>
> I get what I want in the generated HTML:
>
> function changeArea()
> {
>    alert(['Metro Vancouver', 'Metro Vancouver A', 'Sunshine Coast']);
> }
>
> However, when I tried using:
>
> function changeArea()
> {
>                alert({{list_areas.British_Columbia.0}});
> }
>
> I get this:
>
> function changeArea()
> {
>    alert(Metro Vancouver);
> }
> (it is not a string)
>
> Thanks


Django template language is just a template that is all done on the server
side of things. Javascript is client side and doesn't care about the django
template. It thinks (rightly so) that this is just a static web page.

So when you use variables from a Django template, you have to expect all the
output to be written literally. So the proper way to do this with the
javascript you gave is by putting quotes around the variable:
alert('{{ Your Variable }}')

Now when you view source, that is what Django is sending to your browser and
your browser then executes the javascript.

I hope that helps,

Michael

--~--~---------~--~----~------------~-------~--~----~
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