我无法在mysql数据库中显示html模板的最大值。
我的观点: 来自django.contrib.auth.decorators导入login_required 来自django.db.models导入Count,Min,Sum,Avg,Max
let modelData: Dictionary<String, [Double]> = getModelData()
let nsModelData = NSDictionary(dictionary: modelData)
result = myChilitags.estimate3D(configAt: configFilePath, forModel: nsModelData);
我的HTML
from .models import Gwtable
import datetime
def index(request):
maxiumum_value = Gwtable.objects.all().aggregate(Max('salesprice'))
my shell test to prove the data is there 这里有其他任何可能的解决方案吗?
答案 0 :(得分:0)
您的shell测试显示您正在获取字典。在字典上使用values
可以为您提供一组值。因此,直接使用floatformat
毫无意义。
您应该直接通过密钥访问所需的值,而不是使用values
:
{{ maxiumum_value.salesprice__max|floatformat:2 }}