Realm 返回空对象列表

2023-12-10

我想从 Farmer 对象中获取 CropDataList。当我获取 Farmer 对象时,它不为空,但与 Farmer 对象关联的作物数据列表返回空。我可以通过 Stetho 查看数据库条目,并且列表中有一个条目。这是我的代码。

public class Farmer extends RealmObject {

    @PrimaryKey
    private String id;
    private RealmList<CropData> cropData;

    public String getId() {
        return id;
    }

    public void setId(String id) {
        this.id = id;
    }

    public RealmList<CropData> getCropData() {
        return cropData;
    }

    public void setCropData(RealmList<CropData> cropData) {
        this.cropData = cropData;
    }

    public static class Constants {
        public static final String FARMER_ID = "id";
    }
}

这是我的 CropData.class

public class CropData extends RealmObject {

    private String cropName;
    private String crop;
    private Float cropAcres;
    private Float cropYield;
    private Float cropPrice;

    public String getCropName() {
        return cropName;
    }

    public void setCropName(String cropName) {
        this.cropName = cropName;
    }

    public String getCrop() {
        return crop;
    }

    public void setCrop(String crop) {
        this.crop = crop;
    }

    public Float getCropAcres() {
        return cropAcres;
    }

    public void setCropAcres(Float cropAcres) {
        this.cropAcres = cropAcres;
    }

    public Float getCropYield() {
        return cropYield;
    }

    public void setCropYield(Float cropYield) {
        this.cropYield = cropYield;
    }

    public Float getCropPrice() {
        return cropPrice;
    }

    public void setCropPrice(Float cropPrice) {
        this.cropPrice = cropPrice;
    }
}

当我尝试通过以下方式获取该列表时,该列表为空:

    HashMap<String, String> credentials = QueryUtils.getCredentials( realm );
    Farmer farmer = realm.where( Farmer.class ).equalTo( Farmer.Constants.FARMER_ID, credentials.get( "farmerId" ) ).findFirst();
    // this farmer is not null, but associated cropData is empty...
    if (farmer != null) {
        RealmList<CropData> farmerCropData = farmer.getCropData();
        **// this list is empty...**
        Log.d( TAG, "getCropList: " + GsonUtils.toGson( farmerCropData ) );

这就是我插入cropData的方式。

public void updateCrop(String authToken, String farmerId, CropDataUpdateRequest cropDataUpdateRequest, Context context) {
        EndPoints.updateCrop( authToken, farmerId, cropDataUpdateRequest, new Callback<BasicResponse>() {
            @Override
            public void onResponse(@NonNull Call<BasicResponse> call, @NotNull Response<BasicResponse> response) {
                if (response.isSuccessful()) {
                    BasicResponse basicResponse = response.body();
                    assert basicResponse != null;
                    ErrorCode errorCode = basicResponse.getErrorCode();
                    if (!NetworkErrorHandlingUtils.ErrorCheck( errorCode )) {
                        UpdateCropResponse updateCropResponse = GsonUtils.fromGson( basicResponse.getResponse(), UpdateCropResponse.class );
                        try (Realm realm = Realm.getDefaultInstance()) {

                            //  update verification Response...
                            realm.executeTransactionAsync( realm1 -> realm1.insertOrUpdate( updateCropResponse.getUpdatedCrop() ) );

                            GetComparisonSheetRequest getComparisonSheetRequest = new GetComparisonSheetRequest();
                            CropData cropData = updateCropResponse.getUpdatedCrop().get( 0 );
                            if (cropData != null) {
                                getComparisonSheetRequest.setCrop( Crop.valueOf( cropData.getCrop() ) );
                            }
                            getIncomeComparisonSheet( authToken, farmerId, getComparisonSheetRequest, context );
                            getYieldComparisonSheet( authToken, farmerId, getComparisonSheetRequest, context );
                            getRecommendation( authToken, farmerId, context );

                            IntentUtils.PassIntent( context, HomeScreenActivity.class );
                            ((Activity) context).finish();
                        }
                    } else {
                        //  show error dialog here..., the error could be from one of the Error Code...

                    }
                }
            }

            @Override
            public void onFailure(@NonNull Call<BasicResponse> call, @NotNull Throwable t) {
                //  show UI for API Failure...
                if (t instanceof NoConnectivityException) {
                    //  This is where it throws No Internet connectivity error...
                    //  show some UI here, sefu...
                    IntentUtils.PassIntent( context, NetworkErrorActivity.class );
                }
                //  there's some other error, not network connectivity issue...
                else {

                }
            }
        } );
    }

好的,我已经找到了答案,我已更改代码如下。我正在获取我的列表,然后清除它,然后将新数据添加到该列表中并更新我的农民对象。

RealmList<CropData> cropDataRealmList = new RealmList<>();
cropDataRealmList.addAll( updateCropResponse.getUpdatedCrop() );

Realm realm = Realm.getDefaultInstance();
realm.beginTransaction();

Farmer farmer = realm.where( Farmer.class )
    .equalTo( Farmer.Constants.FARMER_ID, farmerId )
    .findFirst();

if (farmer != null) {

    RealmList<CropData> farmerCropData = farmer.getCropData();
    farmerCropData.clear();
    farmerCropData.addAll( cropDataRealmList );

    CropData cropData = updateCropResponse.getUpdatedCrop().get( 0 );
    if (cropData != null) {
        GetComparisonSheetRequest getComparisonSheetRequest = new GetComparisonSheetRequest();
        getComparisonSheetRequest.setCrop( Crop.valueOf( cropData.getCrop() ) );

        getIncomeComparisonSheet( authToken, farmerId, getComparisonSheetRequest, context );
        getYieldComparisonSheet( authToken, farmerId, getComparisonSheetRequest, context );
        getRecommendation( authToken, farmerId, context );
    }
    realm.copyToRealmOrUpdate( farmer );
    realm.commitTransaction();
    realm.close();
    IntentUtils.PassIntent( context, HomeScreenActivity.class );
    ((Activity) context).finish();
}
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

Realm 返回空对象列表 的相关文章

随机推荐