Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6772735
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T15:35:00+00:00 2026-05-26T15:35:00+00:00

In Django template I have printed out data like this: P.place = ‘{{place.json|safe}}’; Then

  • 0

In Django template I have printed out data like this:

P.place = '{{place.json|safe}}';

Then in JavaScript file I’m paring it like that:

place = JSON.parse(P.place);

Everything is fine for data like that:

{"category": "Cars", "name": "Z"}

Because string looks like that:

P.place = '{"category": "Cars", "name": "Z"}'

So, I can parse it using JSON.parse method witch accept strings as input.

Problem is when I get data like that:

{"category": "Cars", "name": "Wojtek's Z"}

Because than input string for JSON parser looks like that:

'{"category": "Cars", "name": "Wojtek'

I cannot escape single quote inside JSON string, because then JSON string become invalid. From the same reason I cannot replace surrounding quotes by double and escape double quotes inside JSON string.

My solution looks like that:

In HTML template:

P.place = {{place.json|safe}};

Then in JavaScript

var place = JSON.stringify(P.place);
place = JSON.parse(place);

It works, but it is not optimal solution IMHO.

How to solve this problem in more cleaver way?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T15:35:01+00:00Added an answer on May 26, 2026 at 3:35 pm

    I can think of two possibilities:

    Create a script element of type application/json, inject your template data into it, then read its data, eg.

    <script id="place-json" type="application/json">
      {{place.json|safe}}
    </script>
    <script type="application/javascript">
      P.place = $('#place-json').text();
    </script>
    

    Or, manually escape the single quotes before injecting the string, eg.

    simplejson.dumps(yourdata).replace("'", r"\'")
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

It is possible you have Javascript read vars from Django template tags like var
I have a django template that looks like this: <head> <script src=http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js type=text/javascript></script> <script
I have a field like this in my Django template: <p>{{news.description}}<p> I wanna show
I have a Django template that contains a Javascript function, like so: <a class
in django I have #template $.get(/places/{{ place.id }}/save/,{description : cadena } #view place.description =
How can I achieve this using the Django template system: Say I have 2
I have javascript in the form <script src=/static/file.js /> in a Django template. I
[I have this discussion at http://groups.google.com/group/django-users/browse_thread/thread/989c569d5118980d] Is 'django.template.loaders.app_directories.load_template_source' required in the TEMPLATE_LOADERS setting for
I have a django template page, and want a link from this page, containing
I have recently found out that Smarty, differently from Django template engine, does not

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.