How to use Axios/Vue.js to call data from SQLite/Django backend?
问题 Status Quo: Whenever a user visits my web application, Axios makes a request to a third party API to fetch data and populate the frontend with that data using v-for . Conclusion: I have one API call per website visitor. Desired status: Whenever a user visits my web application, Axios shall fetch the data from the SQLite database which itself is populated every XX seconds by a python request to reduce API calls. Questions: Now I implemented a SQLite database using Django models and views . So