我有以下循环:
for elem in Data.objects.filter(user=id):
variables['labels'].append(time.strftime("%H%M%S", time.localtime(elem.timestamp)))
这会产生以下结果:
['000000', '000000', '000000', '000000', '000000', '000000', '000000', '000000', '000000', '000000', '000000', '000000', '000000', '000000', '000000', '000000', '000000', '000000']
但是当我检查html时,这就是结果:
labels: ['000000', '000000', '000000', '000000', '000000', '000000', '000000', '000000', '000000', '000000', '000000', '000000', '000000', '000000', '000000', '000000', '000000', '000000']
为什么会这样?
答案 0 :(得分:0)
我用以下过滤器解决了这个问题:
{{ data.labels|safe }}