[Django]-Django – Get POST data from other URL

3👍

You can get the data with request.GET.

id = request.GET['id']
topic = request.GET['topic']

Or you can try with request.GET.get()

Leave a comment