Conventional Approaches for Passing Data to Back-End?
- by Calvin
Hi guys, I'm fairly new to web development, so please pardon the painfully newbie question that's about to follow.
My computer science class group and I are developing a web application for class, which is built in Python (under Django) and uses jQuery on the front end. It's primarily an AJAX-ified application, and passing data from the backend to the front end is done through AJAX calls to specific URLs which return JSON.
This is probably a stupid question, but what's the conventional approach for passing data in the opposite direction? We don't want to reload the page or anything, so is it an AJAX pass going the other way or something?
Thanks in advance for your help!