Skip to content
Advertisement

Django: Could not parse the remainder

I’m trying to pass a response from JsonResponse as a parameter of specific function in views. But, got the following error instead

JavaScript

Here it is my code

url.py

JavaScript

views.py

JavaScript

file.html

JavaScript

Advertisement

Answer

Your success function is javascript that is running in the front-end. Django is not running your front-end and there is no processing of django templates going on here, so you can’t use any django template tags.

What you will need to do is figure out what the url is in your view get_update_ajuan and then pass the whole url back.

JavaScript

and then use that value:

JavaScript
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement