QML Object Type is not a type error in QTCreator

后端 未结 4 1306
无人及你
无人及你 2021-02-20 10:01

Hi Everyone i am new to QT and i am having trouble loading one qml through another qml Basically i have created a qml MyTabView(MyTabView.qml)

 import QtQuick 2.         


        
4条回答
  •  梦如初夏
    2021-02-20 10:34

    This error can also be caused by a component's having an error. For instance, I had this sequence of errors:

    QQmlApplicationEngine failed to load component
    qrc:/main.qml:6 Type MainView unavailable
    qrc:/MainView.qml:27 Type ApplicationLocked unavailable
    qrc:/ApplicationLocked.qml:4 MetaStateChart is not a type
    

    It's not very clear, bu the error in MainView is caused by a problem in ApplicationLocked. When I fixed that error, everything else worked.

    So contrary to the conventional wisdom of starting with the first compiler error, it may be necessary to start with the last one!

提交回复
热议问题