我必须循环搜索特定值的结果吗?

时间:2010-05-05 19:54:29

标签: flex actionscript-3

我在数据库中有一个表:

name         Opinion
Tim          Tim has an opinion
John         other random text
Dan          Dan's random text
Al           Al says something else

我调用此数据并将其恢复到

getRecords.lastResult

要获得John的意见,我可以使用:

getRecords.lastResult[1].opinion

但这只是因为我知道John是第二条记录(记录1),但这可能会改变。因此,正确的方法是搜索结果,首先找到John的记录索引,然后访问他的opinion

我的猜测是我需要某种循环?有没有循环搜索John的更简单方法?

1 个答案:

答案 0 :(得分:0)

好吧,如果getRecords返回n条记录,John必须在其中一条记录上 你可以在As3中完成它并围绕你的Arraycollection做一个循环,直到找到John。

或者

如果是唯一的,请使用搜索字符串(“john”)来返回john数据。