我有以下问题。我使用 Google Maps 的 API 嵌入了一张地图。我的意图是从 .txt(坐标)中获取一些值,将它们放入列表中,然后在地图中显示它们,每个点之间都有线。如果我将值手动放入列表中,我这样做没有问题。但是当我尝试从 .txt 文件中获取它们时,地图没有显示在我的页面中(它应该是空白的地方)。但是如果我签入脚本的源代码,它似乎没有任何问题......每个点都显示为它应该在脚本内部。这是我的观点的一部分:
def 基础(请求):
analyze_results('testing')
with open('data.txt') as f:
for line in f:
words = line.split()
points.append(words[1]+','+words[3])
return render_to_response('base.html', {'points': points, 'user_data': user_data})
点= []
如果我手动分配积分列表,并拿走
使用 open('data.txt') 作为 f:
for line in f:
words = line.split()
points.append(words[1]+','+words[3])
它完美地工作。
你知道可能是什么问题吗?