我正在尝试使用django和javascript创建一个小型网络应用程序但是我遇到了一个问题。
在我的模型中,我有一个实体名称“entry”,其属性id,name,location_lat和location_lon都作为char数组。我使用以下代码将与某项运动相关联的托管传递给“map.html”文件:
def sportpage(request,sportname):
t = get_template('map.html')
try:
entry_list = Feature.objects.filter(sport=sportname)
except BaseException:
raise Http404
sport_list = Sport.objects.all().order_by('name')
context = RequestContext(request,{'sport_list':sport_list,'entry_list':entry_list, 'page_title':sportname})
return HttpResponse(t.render(context))
并且在JavaScript文件中我尝试使用:
读取“entry_list”var data = "{{entry_list|safe}}";
但是,数据仅包含条目名称列表,但不包含location_lat或location_lon属性。我如何获得这些权限?
非常感谢您的帮助