繁体   English   中英

QtQuick - qml:28: 错误:未知方法返回类型:自定义类型

[英]QtQuick - qml:28: Error: Unknown method return type: custom type

我想做什么

我有两个类ObjectAObjectB ObjectA是的组合物ObjectB 我想打一个按钮,调用函数insert(int num, ObjectA &A)ObjectB在QML。

我的代码:

对象a.h

//...

#include <QObject>
#include <QDateTime>

class ObjectA
{
public:
    explicit ObjectA(QString str);
    //...    

private:
    //...
};

//...

对象b.h

//... 

#include <QObject>
#include <QList>
#include <QDebug>
#include "objecta.h"


class ObjectB : public QObject
{
    Q_OBJECT

public slots:
    ObjectA generate(QString str);
    void insert(int priority, ObjectA &A);

public:
    ObjectB(QObject *parent = nullptr);

    //...
private:
    //...

};

//...

对象.cpp

include "objecta.h"

ObjectA::ObjectA(QString str)
{
    //...
}

对象b.cpp

include "objectb.h"

//Object A is a composition of Object B

ObjectA ObjectB::generate(QString str){

    ObjectA *A = new ObjectA(str);
    return *A;
}

// ^ I will use the *A as the parameter for the &A in function insert()
void ObjectB::insert(int num, ObjectA &A){ 

    //...
}

//...

主程序

#include <QGuiApplication>
#include <QQmlApplicationEngine>

#include "objectb.h"

int main(int argc, char *argv[])
{
    ObjectB B;

    qmlRegisterType<ObjectB>("com.mycompany.ObjectB", 1, 0, "ObjectB");

    QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling);

    QGuiApplication app(argc, argv);

    QQmlApplicationEngine engine;

    const QUrl url(QStringLiteral("qrc:/main.qml"));
    QObject::connect(&engine, &QQmlApplicationEngine::objectCreated,
                     &app, [url](QObject *obj, const QUrl &objUrl) {
        if (!obj && url == objUrl)
            QCoreApplication::exit(-1);
    }, Qt::QueuedConnection);
    engine.load(url);

    return app.exec();
}

主文件

import QtQuick 2.12
import QtQuick.Window 2.12

import com.mycompany.ObjectB 1.0

Window {
    //...

    ObjectB {
        id: objectb
    }

    Page {} //Page.qml
}

页面.qml

import QtQuick 2.0
import QtQuick.Controls 2.1

Row {
    id: row
    anchors.centerIn: parent
    spacing: 20

    TextField {
        id: strfield
    }

    ComboBox {
        id: numbox
        width: 200
        model: [ "1", "2", "3" ]
    }

    Button {
        id: btninsert
        text: "Insert"
        highlighted: true
        onClicked: objectb.insert(numbox.currentIndex+1,objectb.generate(strfield.text))
    }

}




我得到的错误

当我单击按钮时,我收到此错误消息:

qrc:/Page.qml:28: Error: Unknown method return type: ObjectA

我认为这个问题是objectb.generate(strfield.text)未能返回ObjectA ,因为QML不能识别自定义类型。 我该如何解决?

编辑:新增的头文件ObjectAObjectB ,以及CPP文件ObjectA

临时解决方案:

避免在 QML 中使用自定义返回类型。

对象b.h

//... 

#include <QObject>
#include <QList>
#include <QDebug>
#include "objecta.h"


class ObjectB : public QObject
{
    Q_OBJECT

public slots:
    // A new function that combine both generate and insert function
    void btnInsert(int priority, QString str)

    ObjectA generate(QString str);
    void insert(int priority, ObjectA &A);

public:
    ObjectB(QObject *parent = nullptr);

    //...
private:
    //...

};

//...

对象b.cpp

include "objectb.h"

//Implement new function
void ObjectB::btnInsert(int priority, QString str)
{
    ObjectA *A = new ObjectA(str);

    //Code implementation...
}

//Object A is a composition of Object B

ObjectA ObjectB::generate(QString str){

    ObjectA *A = new ObjectA(str);
    return *A;
}

// ^ I will use the *A as the parameter for the &A in function insert()
void ObjectB::insert(int num, ObjectA &A){ 

    //...
}

//...

注意ButtononClicked

页面.qml

import QtQuick 2.0
import QtQuick.Controls 2.1

Row {
    id: row
    anchors.centerIn: parent
    spacing: 20

    TextField {
        id: strfield
    }

    ComboBox {
        id: numbox
        width: 200
        model: [ "1", "2", "3" ]
    }

    Button {
        id: btninsert
        text: "Insert"
        highlighted: true
        //Modified
        onClicked: objectb.insert(numbox.currentIndex+1,strfield.text)
    }

}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM