我尝试按访问者对浮点值列上的django-tables2
表进行排序。
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
如何解决此类问题?