form_shift
是表单名称
tblSession
是QTableWidget
对象
shift_id=form_shift.tblSession.item(1,0).text()
错误:
AttributeError: 'NoneType' object has no attribute 'text'
答案 0 :(得分:4)
这对我来说很好。也许你的桌子在这些坐标上没有一个项目?
table = QtGui.QTableWidget(5, 3, self)
for row in range(5):
for col in range(3):
table.setItem(row, col, QtGui.QTableWidgetItem("(%d, %d)" % (row, col)))
print("1,0: %s" % table.item(1, 0).text())