Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想从 Django 获取原始查询(格式与发送的完全相同)。
目前,django 向我发送了一个查询字典对象,其中如果我执行 querydict.urlencode(),我会返回查询,但格式与发送的格式不同,因为字典会破坏位置。
对于 GET,我们可以使用 request.get_full_path()。
我还没有找到 POST 的机制。
我需要它,因为我正在做一个 HMAC,对于 HMAC,字段的精确定位很重要。
问候
ķ
对不起,这已经解决了。
我们可以为此使用 raw_post_data。忘了那个。