我已设置gtk.TreeView
gtk.TreeStore
。一列包含格式化的美元金额,我按以下方式设置按该列排序:
def sortmon(model, i1, i2):
v1 = model[i1][COL_MONEY]
v2 = model[i2][COL_MONEY]
return cmp(float(v1.replace("$","").replace(",","")),
float(v2.replace("$","").replace(",","")))
self.hsModel.set_sort_func(COL_MONEY, sortmon)
这很好用,除了有时候,当我追加一行时,我得到:
stderr : INFO Traceback (most recent call last):
stderr : INFO File "C:\Users\DrClaud\bumhunter\gui\widgets\replay\ReplayWidget.py", line 141, in sortpot
stderr : INFO float(v2.replace("$","").replace(",","")))
stderr : INFO AttributeError: 'NoneType' object has no attribute 'replace'
我做了更多的打印输出,似乎当我插入一行时,任何x的model[i1][x]
或model[i2][x]
之一都是无。我确定我没有在其中插入一行None
元素..所以会发生什么?
答案 0 :(得分:1)
如果向排序模型追加一行,GTK +会自动为其搜索一个正确的位置,因此如果它在该列上,则会调用您的排序函数。您应该专门处理None
,或在append()
调用中指定初始值,例如:
model.append (parent, [x, y, z])
后者当然只能解决问题,如果你能指定一些比None
更合适的东西,也许是一个空字符串。