FLEX - 将AsyncToken转换为ArrayCollection

时间:2014-05-05 18:07:37

标签: java flex actionscript arraycollection asynctoken

我刚接触flex,我似乎无法让它发挥作用。基本上,我有一个选择框,它的可用数据依赖于另一个组合框。

每个CategoryType中有多个TreatmentTypes。

这是我的代码:

组合框改变;更新选择框:

private function refreshAvailableTreatmentTypes():void {
        // this is the combo box
        fAccomplishment.habitatType = habitatTypeId.selectedIndex != -1 ? habitatTypeId.selectedItem as HabitatType : null; 
        // fAccompRemote is a RemoteObject
        var treatmentList:ArrayCollection = fAccompRemote.getValidTreatments(fAccompForm.accomplishment, fAccomplishment.habitatType);

        if ( fAccompForm.categoryTypes != null ) {
            // All categories are always shown. These are passed to the form on construction. 
            for each ( var currentCat:CategoryType in fAccompForm.categoryTypes ) {
                var catAdded:Boolean = false;
                /* loop through all the treatments in each Category and add them to 
                 * the available list if they meet the criteria */
                for each ( var currentTreat:TreatmentType in currentCat.treatments ) {
                    if (currentTreat.id in treatmentList || treatmentList.length == 0) {
                        if (!catAdded) {
                            // fCatsAndTreats defined as a [Bindable] private var
                            fCatsAndTreats.addItem( currentCat );
                            catAdded = true;
                        } 

                        fCatsAndTreats.addItem( currentTreat );
                    }
                }
            }
        }
    }

服务方式:

@RemotingInclude
public List<TreatmentType> getValidTreatments(Accomplishment accomp, HabitatType selectedHabitatType){
    if ( accomp == null || accomp.getGeometry() == null || accomp.getHabitatType() == null) {
        return new ArrayList<TreatmentType>();
    }

    Geometry accompGeo = accomp.getGeometry();
    List<TreatmentType> optionList = new ArrayList<TreatmentType>();
    String geomName = null;

    if ( accompGeo instanceof Point || accompGeo instanceof MultiPoint ) {
        geomName = "Point";
    } else if ( accompGeo instanceof LineString || accompGeo instanceof MultiLineString) {
        geomName = "Line";
    } else if ( accompGeo instanceof Polygon || accompGeo instanceof MultiPolygon ) {
        geomName = "Polygon";
    }

    Integer habTypeId = null;
    if (selectedHabitatType == null) {
        habTypeId = accomp.getHabitatType().getId();
    } else {
        habTypeId = selectedHabitatType.getId();
    }
    optionList = accomplishmentDao.getValidTreatments(geomName, habTypeId);

    return optionList;
}

TypeError:错误#1034:类型强制失败:无法将mx.rpc :: AsyncToken @ 1af48641转换为mx.collections.ArrayCollection。

我该怎么做?我找到了THIS,但它似乎并没有给我太多帮助:。任何资源或信息都将受到高度赞赏。

1 个答案:

答案 0 :(得分:2)

对RemoteObject的调用是异步的 - 来自fAccompRemote.getValidTreatments的返回值是AsyncToken,它定义了如何处理结果(返回时)。

当远程调用返回时,它将调用结果处理程序或错误处理程序,具体取决于调用是否成功或是否有错误。

您可以通过几种不同的方式为代码设置响应处理程序 - 您可以在调用时添加addEventListener,也可以在调用返回的AsyncToken中设置响应程序。

fAccompRemote.addEventListener(ResultEvent.RESULT, resultHandler);
fAccompRemote.getValidTreatments(...)

-OR -

var token:AsyncToken = fAccompRemote.getValidTreatments(...);
token.addResponder(new AsyncResponder(resultHandler, faultHandler));

在任何一种情况下,resultHandler都会收到一个ResultEvent事件,其中包含您从getValidTreatments

返回的ArrayCollection
protected function resultHandler(event:ResultHandler):void
{
    var results:ArrayCollection = event.result as ArrayCollection;
}
相关问题