我们可以在 QML 文件中声明全局变量吗?

Can we declare global variable in QML file?(我们可以在 QML 文件中声明全局变量吗?)
本文介绍了我们可以在 QML 文件中声明全局变量吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想做一些类似于以下代码的事情:

I want to do something similer to following code:

//test.qml
import QtQuick 1.0
Item 
{
    var globalforJs =10;

    function increment() // JavaScript function
    {
        globalforJs++;
    }
    ....
QML Code

我们可以在 QML 文件 中拥有全局变量并从 JavaScript 函数中访问它吗?

Can we have global variable in QML file and access it from the JavaScript function?

推荐答案

试试 property int globalForJs: 10;

如果你想要一个可以采用任何类型的变量:

If you want a variable that can take any type:

属性变量 globalForJs: 10

在 QML 2 之前,使用 variant 关键字代替 var.

Prior to QML 2, use the variant keyword instead of var.

这篇关于我们可以在 QML 文件中声明全局变量吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

How do I define global variables in CoffeeScript?(如何在 CoffeeScript 中定义全局变量?)
Is there a spec that the id of elements should be made global variable?(是否有规范将元素的 id 设为全局变量?)
How do I get fetch result from API to store as a global variable?(如何从API获取FETCH结果以存储为全局变量?)
What#39;s the difference between a global var and a window.variable in javascript?(javascript中的全局变量和window.variable有什么区别?)
How to share a global variable between test files from a test in TestCafe?(如何在 TestCafe 中的测试中共享测试文件之间的全局变量?)
What are some of the problems of quot;Implied Global variablesquot;?(“隐含全局变量有哪些问题?)