目前我有一个列表组件,它会自动填充来自 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");
谢谢