我们可以在 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
.
相关文章