Flex 基于变量值访问 ArrayCollection 中的节点

发布于 2024-09-30 12:03:31 字数 506 浏览 7 评论 0原文

我需要一些帮助来访问 Flex 3 中的 arrayCollection 中的值

我需要访问 photoFilePath,其中 series = f。所以如果 f=2,那么我需要 /pics/my2.png

所以,伪代码: myAc.(series="f").photoFilePath

<mx:ArrayCollection id="myAC">
    <mx:Object label="Label 1" series="1" photoFilePath="/pics/my1.png" pageTitle="First"/>
    <mx:Object label="Label 2" series="2" photoFilePath="/pics/my2.png" pageTitle="Second"/>
</mx:ArrayCollection>

任何建议。

谢谢。

-拉克斯米迪

I need some help accessing a value in my arrayCollection in Flex 3.

var f:String;

I need to access the photoFilePath where series = f. So if f=2, then I need /pics/my2.png

So, pseudo code: myAc.(series="f").photoFilePath

<mx:ArrayCollection id="myAC">
    <mx:Object label="Label 1" series="1" photoFilePath="/pics/my1.png" pageTitle="First"/>
    <mx:Object label="Label 2" series="2" photoFilePath="/pics/my2.png" pageTitle="Second"/>
</mx:ArrayCollection>

Any suggestions.

Thank you.

-Laxmidi

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

↘人皮目录ツ 2024-10-07 12:03:31
var n:int = myAC.length;
var f:String;
for (var i:int = 0; i < n; i++)
{
    var item:Object = myAC.getItemAt(i);
    if (item.series == f)
    {
        trace(item.photoFilePath);
        break;
    }
}
var n:int = myAC.length;
var f:String;
for (var i:int = 0; i < n; i++)
{
    var item:Object = myAC.getItemAt(i);
    if (item.series == f)
    {
        trace(item.photoFilePath);
        break;
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文