无法从不同的 QML 文件访问公共函数

发布于 2025-01-10 04:13:41 字数 471 浏览 0 评论 0原文

Qt 6.2.0 Ubuntu 20.04

Content.qml

PathView {
    id: view

    function myFunc(type) {
        console.log(type)
    }
}

Main.qml

ApplicationWindow {
    id: window

    Item {
        id: item

        Content {
          id: content
        }
    }

    Item {
       content.myFunc(1) // <-- Expected token :
    }
}

调用 myFunc() 的正确语法是什么?

Qt 6.2.0 Ubuntu 20.04

Content.qml

PathView {
    id: view

    function myFunc(type) {
        console.log(type)
    }
}

Main.qml

ApplicationWindow {
    id: window

    Item {
        id: item

        Content {
          id: content
        }
    }

    Item {
       content.myFunc(1) // <-- Expected token :
    }
}

What is the right syntax to call myFunc()?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

咋地 2025-01-17 04:13:41

不允许在 QML 项内实现逻辑,您可以在可点击区域下调用 myFunc,如下所示,

 MouseArea {
        onClicked: {
            content.myFunc()
        }
    }

您可以阅读更多内容,以便更好地理解 实现游戏逻辑

Implementing logic inside a QML item is not allowed, you can call myFunc under a clickable area like following

 MouseArea {
        onClicked: {
            content.myFunc()
        }
    }

you can read more for to get a better understandings from Implementing the Game Logic

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文