How to access url hash/fragment from a Django Request object

15,413

This is not sent to the server, by definition. From URI References: Fragment Identifiers on URIs :

"The HTTP engine cannot make any assumptions about it. The server is not even given it."

Share:
15,413
Andrea Zilio
Author by

Andrea Zilio

A (graduate) computer science student, web developer and sometimes designer. My interests are software engineering, software architecture, software design, software testing and programming languages.

Updated on June 03, 2022

Comments

  • Andrea Zilio
    Andrea Zilio about 2 years

    As in the title: How can I access the URL hash/fragment (the part following the hash #, or 'pound symbol' in US English) from a Django view and so, I suppose, from a Django Request object?

    I've not found enough information on the documentation here available: http://docs.djangoproject.com/en/dev/ref/request-response/

    P.S. Assume the fragment is included in the URL sent to the server. (I have verified this in my case, where I'm not actually using a browser.)