0

目前我有一个列表组件,它会自动填充来自 mySQL 数据库的数据。代码如下所示。

是否可以从列表中选择一个变量并将其存储为单独的变量?因此,我可以在需要时将其显示给用户。

var theXML:XML = new XML();
theXML.ignoreWhite = true;

theXML.onLoad = function() {
    var nodes = this.firstChild.childNodes;
    for(i=0;i<nodes.length;i++) {
        theList.addItem(nodes[i].firstChild.nodeValue,i);
    }
}

theXML.load("http://localhost/fyptest/products.php");

谢谢

4

1 回答 1

1

getItemAt(n)您可以使用其中 n 是所需行的索引来访问列表数据。您可以在此处获取更多详细信息和示例。

例如,在您的情况下var myLabel = theList.getItemAt(0)将返回第一个项目值。

于 2013-04-20T18:19:43.403 回答