1

我写了一个使用 TabView 的 QT Quick 程序。当我单击 Tabview 中的按钮 b1 时,程序应该调用 show_text() 并打印 b1 的文本,但它会打印“ReferenceError: b1 is not defined”。任何建议将不胜感激,谢谢。

import QtQuick 2.2
import QtQuick.Controls 1.1
import QtQuick.Window 2.1



ApplicationWindow {
    function show_text() {
        console.log(b1.text)
    }

    TabView {
        id: tv
        Tab {
            id: tab1
            Button{
                id: b1
                text:"b1's text"
                onClicked: {
                    //console.log(b1.text)
                    show_text()
                }
            }
        }
    }
}
4

2 回答 2

1

将对象作为参数传递

import QtQuick 2.2
import QtQuick.Controls 1.1
import QtQuick.Window 2.1

ApplicationWindow {
    function show_text(myobject) {
        console.log(myobject.text)
    }

    TabView {
        id: tv
        Tab {
            id: tab1
            Button{
                id: b1
                text: "b1's text"
                onClicked: {
                    show_text(b1)
                }
            }
        }
    }
}
于 2014-02-26T22:13:35.847 回答
0

您可以使用此示例访问您的对象。

ApplicationWindow {
function show_text() {
    console.log(tv.b1Text);
}

TabView {
    id: tv
    property alias b1Text: b1.text
    Tab {
        id: tab1
        Button{
            id: b1
            text:"b1's text"
            onClicked: {
                //console.log(b1.text)
                show_text()
            }
        }
    }
}

}

于 2014-02-21T11:22:39.573 回答