浮点数排序-Django-tables2

时间:2019-02-06 11:18:10

标签: django django-tables2

我尝试按访问者对浮点值列上的django-tables2表进行排序。

tables.py

class GeneTable(tables.Table):
    float_number = tables.Column()

    def render_float_number(self, value):
        print(float(value))
        return float(value)

在表上输入

100.0
99.65
100.0
81.76
97.88
96.96
97.57
69.87
97.87

通过单击访问器排序后的结果

100.0
100.0
69.87
81.76
96.96
97.57
97.87
97.88
99.65

如何解决此类问题?

0 个答案:

没有答案