A convenient helper to use Django URLs in Javascript.
Project description
Django-js-url is a lightweight Django application allowing to easily get absolute path references matching given URL names and optional parameters on the client side - just like reverse does, but in a Javascript fashion.
Main requirements
Python 3.4+, Django 1.11+.
Installation
To install Django-js-urls, please use pip (or pipenv) as follows:
$ pip install django-js-urls
Once installed you just need to add js_urls to INSTALLED_APPS in your project’s settings module:
INSTALLED_APPS = (
# other apps
'js_urls',
)
URLs that are included in the Javascript helper tool are configured using a single JS_URL setting. This setting can embed URL namespaces or specific URL names that should be included in the generated Javascript file. For example:
JS_URLS = (
'admin',
'blog:article_list',
'blog:article_detail',
)
Important: only URLs defined in this setting will be included in the generated Javascript file. You don’t want to expose all the URLs of your Django project in a Javascript file.
Then you can include the view responsible for generating the Javascript file in your URLs root module:
from js_urls.views import JsUrlsView
urlpatterns = [
# other urls
url(r'^js-urls/$', JsUrlsView.as_view(), name='js_urls'),
]
And finally you can include the Javascript script in your base template as follows:
<script src="{% url 'js_urls' %}" type="text/javascript"></script>
Usage
URLs included in the generated Javascript file can be used in your scripts by using the window.reverse function. Here are some example:
const url1 = window.reverse('home');
const url2 = window.reverse('blog:article_list');
const url3 = window.reverse('blog:article_detail', articleId);
const url4 = window.reverse('blog:article_detail', [articleId, ]);
const url5 = window.reverse('blog:article_detail', { pk: articleId });
License
MIT. See LICENSE for more details.
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
Built Distribution
File details
Details for the file django-js-urls-0.1.1.tar.gz
.
File metadata
- Download URL: django-js-urls-0.1.1.tar.gz
- Upload date:
- Size: 7.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: Python-urllib/3.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9e578a1dae530968ea1c3d609a9177c7fe7bbc2774e5e61dcb2da4b311527cce |
|
MD5 | 95a2a46715b7538a8ca40b49448c84ec |
|
BLAKE2b-256 | a777b466e0974cccdc620c3e501e92b0e6644cb4961c70cd8e006aa95eed36aa |
File details
Details for the file django_js_urls-0.1.1-py2.py3-none-any.whl
.
File metadata
- Download URL: django_js_urls-0.1.1-py2.py3-none-any.whl
- Upload date:
- Size: 9.0 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: Python-urllib/3.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c51660f5f7ab22037e91ce161e4e74405bc2ee714573ce762899ef73c5d818a8 |
|
MD5 | 66b9d56897e3212a852c840b59cb7e40 |
|
BLAKE2b-256 | 53424fedb83272adf43d1e4a5aba807adc366634c6914abed577b4f22e262cb9 |