A Django app to simplify communication between frontend and Django Rest Framework
Project description
DrfXios simplifies communication between frontend and Django Rest Framework API.
Quick start
>>> pip install django-drfxios
settings.INSTALLED_APPS
INSTALLED_APPS = [
...
'drfxios',
...
]
settings.py
DRFXIOS_ROUTER_PATH = "<dotted.path.to.router>" # eg "api.urls.router"
context_processors
TEMPLATES = [
{
...
'OPTIONS': {
'context_processors': [
...
'drfxios.context_processors.drfxios',
...
],
},
},
]
base.html
<script src="https://cdnjs.cloudflare.com/ajax/libs/axios/0.19.2/axios.js"></script>
<script src="https://cdn.jsdelivr.net/npm/url-join@4.0.1/lib/url-join.min.js"></script>
<script src="{% static "drfxios/drfxios.js" %}"></script>
<script>
dx = new DrfXios('api', {{ DRFXIOS.MODEL_LIST|safe }})
</script>
And you’re ready tu use DrfXios in your templates.
Example:
dx.getModel(<pk>) dx.createModel(<data:obj>) dx.deleteModel(<pk>) dx.getModelList(<filter:obj>) dx.updateModel(<data:obj>) dx.patchModel(<data:obj>)
All methods return JavaScript promises so you can use .then, .catch and .finally methods.
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-drfxios-0.2.tar.gz
(3.7 kB
view details)
File details
Details for the file django-drfxios-0.2.tar.gz
.
File metadata
- Download URL: django-drfxios-0.2.tar.gz
- Upload date:
- Size: 3.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 35c89a8814b22dc85968b715ed0c1749b0a70465be194d69040940898df15266 |
|
MD5 | 313ec799efe99c64b501a3b05a3cb850 |
|
BLAKE2b-256 | 566ee3d5245b667bd336793769224d0807e833b5273e9f4821f9b31a573d1a28 |