Django:从当前实际页面获取当前url路径

时间:2014-04-12 05:07:05

标签: django django-templates django-views django-urls

我有一种情况希望你能帮助我。我已经阅读了一些关于获取SO current_urlurl TEMPLATE_CONTEXT_PROCESSORS(最相关)的当前网址路径的帖子和答案。但它似乎不适合我想做的事情。我有一个观点:

def fish_search(request):
    args = {}
    #irrelevant code here
    args['fishes'] = fishes
    args['current_path'] = request.get_full_path()
    return render_to_response('ajax_search.html', args)

在我的ajax_search.html中:

<a id="search-results" href="{{ current_path }}"></a>

和base.html:

div id="search-results" ></div>

Javascript将搜索结果转储到base.html。并且base.html在fishMarket.html,fishDictionary.html,fishRumour.html等中进行了扩展。所以,遗憾的是,显示的路径都是“/ search /”

我希望路径为/ fishMarket /如果我从fishMarket.html搜索,/ fishDictionary /应该出现,如果我从fishDictionary.html搜索,同样,/ fishRumour /如果我从fishRumour.html搜索。有没有人遇到过这种情况?你是怎么解决这个问题的?我对django比较新,所以请愚蠢地解决这个问题。

我非常感谢你的帮助。非常感谢!

1 个答案:

答案 0 :(得分:5)

不使用request.get_full_path()来提供搜索视图的路径,而是使用HTTP标头中的referrer。

您可以使用request.META['HTTP_REFERER']

获得该功能