세션에서 페치한 카테고리 스키마에서 카테고리 가져오기

다음을 참조하십시오.

카테고리 스키마에서 모든 카테고리를 페치하려면 RAMCategorySchema.getCategories()RAMCategorySchema.getCategory(String categoryName) 메소드를 사용하십시오.

                //Get all Categories in a Category Schema
                RAMCategory[] categories = (RAMCategory[])automobilesSchema.getCategories();
                
                //Get a Category by name
                RAMCategory modelCategory = (RAMCategory)automobilesSchema.getCategory("Model");

피드백