Django additions for JSON
Project description
Abstract
JSON library for working with django + json
Donors
jsonify filter for Django based on http://djangosnippets.org/snippets/201/
@ajax_request decorator from django-annoying https://bitbucket.org/offline/django-annoying (Anderson <self.anderson@gmail.com>)
Installation
To install you can use pip:
pip install django-jsonify
Then add jsonify to django settings.INSTALLED_APPS
Usage
If you want to convert varianble in django template, you can use jsonify filter:
{% load jsonify %} {% block content %} <script type="text/javascript"> <![CDATA[ var items = {{ items|jsonify }}; ]]></script> {% endblock %}
If you want to return JSON data from view, you can use @ajax_request decorator
from jsonify.decorators import ajax_request @ajax_request def my_view(request): news = News.objects.all() news_titles = [entry.title for entry in news] return {'news_titles': news_titles}
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
django-jsonify-0.3.0.tar.gz
(2.5 kB
view details)
File details
Details for the file django-jsonify-0.3.0.tar.gz
.
File metadata
- Download URL: django-jsonify-0.3.0.tar.gz
- Upload date:
- Size: 2.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 51d7cb8cb5e1fd4b32b76b4e200833f499aad5b01feb2de8c1e3b3507f1bbbc4 |
|
MD5 | 0a24c603511ca8bb1200ef3515fe3688 |
|
BLAKE2b-256 | cad4c8dc84ffb33b1dcb969d3db0715b92dc9d662eb7cb722fc919a42a57d77e |