我无法在mysql数据库中显示html模板上的值。
我的观点:
from django.contrib.auth.decorators import login_required
from django.db.models import Count, Min, Sum, Avg, Max
from .models import Gwtable
import datetime
def index(request):
max_value = Gwtable.objects.all().aggregate(Max('salesprice'))
return render(request, 'sql/index.html', context)
我的HTML:
{{max_value.values | floatformat:2}}
答案 0 :(得分:0)
您是否填写了上下文对象,例如上下文= {' max_values':max_values}您的html标记是正确的。