Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 Qt(更具体地说,PyQT)在表格中显示数据库中的一些数据,并可以编辑数据。QSqlTableModel 可用于此。但是使用 QSqlTableModel 是不可能轻松地重新排序列,或者排除列。
我知道可以使用 QSqlTableModel.horizontalHeader.moveSection 移动列,但是这个函数取决于列的索引,这不是很方便,特别是如果我以后想添加另一列。
实现这一目标的最简单方法是什么?提前致谢。