0

我正在尝试通过Q_INVOKABLE QStringList availablePorts()我在课堂上直接公开给 QML 的类中的函数公开 QSerialPort.available() main

主要的:

qmlRegisterType<SerialPortManager>("com.MyApp.qml", 1, 0, "SerialPortManager");

串行端口管理器

class SerialPortManager : public QObject
{
    Q_OBJECT
public slots:
    Q_INVOKABLE virtual QStringList availablePorts() {
        QList<QSerialPortInfo> portsAvailable = QSerialPortInfo::availablePorts();
        QStringList names_PortsAvailable;
        for(QSerialPortInfo portInfo : portsAvailable) {
            names_PortsAvailable.append(portInfo.portName());
        }

        return names_PortsAvailable;
    }

这对于 QML 中的类型无效,model因为它会引发Unable to assign QStringList to QQmlListModel*错误。

QML

ComboBox {
    model: serial.availablePorts()
}
SerialPortManager {
    id: serial
}

那么我该如何解决呢?

4

1 回答 1

3

一种解决方案是按照文档QVariant的建议返回 a ,为此我们使用QVariant::fromValue()

#ifndef SERIALPORTMANAGER_H
#define SERIALPORTMANAGER_H

#include <QObject>
#include <QSerialPortInfo>
#include <QVariant>

class SerialPortManager : public QObject
{
    Q_OBJECT
public:
    Q_INVOKABLE static QVariant availablePorts() {
        QList<QSerialPortInfo> portsAvailable = QSerialPortInfo::availablePorts();
        QStringList names_PortsAvailable;
        for(const QSerialPortInfo& portInfo : portsAvailable) {
            names_PortsAvailable<<portInfo.portName();
        }
        return QVariant::fromValue(names_PortsAvailable);
    }
};

#endif // SERIALPORTMANAGER_H
于 2018-01-21T23:03:29.723 回答