我的问题与 Google Maps JavaScript API 有关。更具体的自动完成功能。
我已将自动完成功能作为搜索栏添加到我的测试站点,这工作正常,但现在我想将选择的参数传递给 Django 视图。在这里我被困住了。
这是我的模板中的内容:
<script src="https://maps.googleapis.com/maps/api/js?sensor=false&libraries=places"></script>
<script type="text/javascript">
function initialize() {
var input = document.getElementById('searchTextField');
var autocomplete = new google.maps.places.Autocomplete(input);
}
google.maps.event.addDomListener(window, 'load', initialize);
google.maps.event.addListener(autocomplete, 'place_changed', function() {
var place = autocomplete.getPlace();
});
</script>
<form method="post" action="">{% csrf_token %}
<input id="searchTextField" type="text" placeholder="Enter a location" autocomplete="on">
<input type="submit" value="Search" class="postfix button"/>
</form>
在我看来,这是:
def homepage(request):
if request.method == 'POST':
location = request.POST
else:
location = ''
return render_to_response('homepage.html', {'location':location}, context_instance = RequestContext(request))
我想要做的是将变量'place'传递给我的Django视图中的变量'location'(var place应该包含纬度和经度,我想在Geodjango中进一步使用)。request.POST
给出以下内容:但这<QueryDict: {u'csrfmiddlewaretoken': [u'4xp3nNwzeITb1zHhkBkSGlZSPtGwmuMB']}>
我不能使用。
是否可以将 var place 的内容传递给 django 视图?
感谢您的反馈!
编辑:我目前使用 geopy 的解决方法:
模板:
<input id="searchTextField" name="searchTextField" type="text" placeholder="Enter a location" autocomplete="on">
看法:
if request.method == 'POST':
location = request.POST.get('searchTextField')
gn = geocoders.Google()
place, (lat, lng) = gn.geocode(location)
仍在寻找访问var place
. script
这可能吗?