QML按属性名称字符串访问对象属性

时间:2016-04-03 15:08:12

标签: qt qml qt5 qtquick2

我想在重复的组件中创建一个QML绑定。我想将其中一个元素的值绑定到已知对象的属性。我的问题是我要绑定的所述属性的名称将作为组件中的字符串提供。如何将属性名称解析为可用作绑定中的值的实际属性?

PS。如果可能的话,我想我可以将属性直接传递给转发器但是我希望能够将属性转换为字符串,因为我需要两者并且不想通过它们。

编辑: 这就是我想要的:

    ListModel {
        id: settingsModel
        ListElement { title: "Bed Width"; setting: "bedWidth"; }
        ListElement { title: "Bed Length"; setting: "bedLength"; }
    }

    Component {
        id: settingsDelegate

        Item {
            width: parent.width
            height: childrenRect.height

            Label {
                id: setLabel
                text: title + ":"
                width: parent.width
            }

            TextBox {
                id: setTBox
                anchors.top: setLabel.bottom
                anchors.topMargin: 5
                width: parent.width

                Binding on text {
                    when: !setTBox.isActive
                    value: settings.setting
                }

                Binding {
                    target: settings
                    property: setting
                    value: setTBox.text
                }
            }
        }
    }

    Column {
        id: settingsColumn
        spacing: 10
        anchors.left: parent.left
        anchors.right: parent.right
        anchors.top: txtSave.bottom
        anchors.topMargin: 15

        Repeater {
            model: settingsModel
            delegate: settingsDelegate
        }
    }

1 个答案:

答案 0 :(得分:2)

  

我的问题是我要绑定的所述属性的名称   将作为组件中的字符串提供。我怎么解决   属性名称为可用作a中值的实际属性   结合?

如果查看the documentation for Binding,您会发现property属性需要字符串 - property : string

所以你没有什么可以解决的,这是在内部发生的。

  

我的问题是"值:settings.setting"线

您可以尝试settings[setting]

之类的内容