有什么方法可以从表 View 中的选定行中获取数据吗?我用过QModelIndexList ids = ui->tableView->selectionModel()->selectedRows();返回选定行的索引列表。我不需要索引。我需要来自所选行的每个单元格的数据。

最佳答案

QVariant data(const QModelIndex& index, int role) const

用于返回数据。如果您需要获取数据,则可以根据QModelIndex行和列在此处进行操作,并从某个容器中获取数据,也许
std::vector<std::vector<MyData> > data;

您必须定义此类映射,并在data()setData()函数中使用它来处理与基础模型数据的交互。

另外,QAbstractItemModelQTreeView提供了将类即TreeItem分配给每个QModelIndex的方法,因此您接下来可以使用从 QModelIndex.internalPointer()函数返回的指针的static_cast检索指向每个数据的指针:
TreeItem *item = static_cast<TreeItem*>(index.internalPointer());

因此,您可以创建一些映射:
// sets the role data for the item at <index> to <value> and updates
// affected TreeItems and ModuleInfo. returns true if successful
// otherwise returns false
bool ModuleEnablerDialogTreeModel::setData(const QModelIndex & index,
    const QVariant & value, int role) {
  if (role
      == Qt::CheckStateRole&& index.column()==ModuleEnablerDialog_CheckBoxColumn) {
    TreeItem *item = static_cast<TreeItem*>(index.internalPointer());
    Qt::CheckState checkedState;
    if (value == Qt::Checked) {
      checkedState = Qt::Checked;
    } else if (value == Qt::Unchecked) {
      checkedState = Qt::Unchecked;
    } else {
      checkedState = Qt::PartiallyChecked;
    }
    //set this item currentlyEnabled and check state
    if (item->hierarchy() == 1) { // the last level in the tree hierarchy
      item->mModuleInfo.currentlyEnabled = (
          checkedState == Qt::Checked ? true : false);
      item->setData(ModuleEnablerDialog_CheckBoxColumn, checkedState);
      if (mRoot_Systems != NULL) {
        updateModelItems(item);
      }
    } else { // every level other than last level
      if (checkedState == Qt::Checked || checkedState == Qt::Unchecked) {
        item->setData(index.column(), checkedState);
        // update children
        item->updateChildren(checkedState);
        // and parents
        updateParents(item);

example of implementation

10-04 13:00
查看更多