diff --git a/src/main/java/com/cultural/heritage/controller/clothes/ClothesCategoryController.java b/src/main/java/com/cultural/heritage/controller/clothes/ClothesCategoryController.java index 5c5cb8a..eb40900 100644 --- a/src/main/java/com/cultural/heritage/controller/clothes/ClothesCategoryController.java +++ b/src/main/java/com/cultural/heritage/controller/clothes/ClothesCategoryController.java @@ -19,10 +19,12 @@ import com.cultural.heritage.model.vo.clothes.ClothesVO; import com.cultural.heritage.service.clothes.ClothesCategoryService; import com.cultural.heritage.service.clothes.ClothesService; import com.cultural.heritage.service.common.CommonService; +import com.cultural.heritage.utils.DecoderUtils; import io.swagger.v3.oas.annotations.Operation; import io.swagger.v3.oas.annotations.tags.Tag; import jakarta.annotation.Resource; import lombok.extern.slf4j.Slf4j; +import org.apache.commons.lang3.StringUtils; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestMapping; @@ -182,6 +184,10 @@ public class ClothesCategoryController { fieldConditions.put("isShelves", 1); List clothesList = commonService.findByFieldEqTargetFields(fieldConditions, clothesService); + // 处理富文本字段 + for (Clothes clothes : clothesList) { + if (StringUtils.isNotBlank(clothes.getRichText())) clothes.setRichText(DecoderUtils.decodeText(clothes.getRichText())); + } // 获取服装租赁产品VO列表 List clothesVOS = commonService.convertList(clothesList, ClothesVO.class); Collections.reverse(clothesVOS); diff --git a/src/main/java/com/cultural/heritage/controller/clothes/ClothesController.java b/src/main/java/com/cultural/heritage/controller/clothes/ClothesController.java index e9bf0f5..d2953cd 100644 --- a/src/main/java/com/cultural/heritage/controller/clothes/ClothesController.java +++ b/src/main/java/com/cultural/heritage/controller/clothes/ClothesController.java @@ -20,10 +20,12 @@ import com.cultural.heritage.model.entity.Clothes; import com.cultural.heritage.model.vo.clothes.ClothesVO; import com.cultural.heritage.service.clothes.ClothesService; import com.cultural.heritage.service.common.CommonService; +import com.cultural.heritage.utils.DecoderUtils; import io.swagger.v3.oas.annotations.Operation; import io.swagger.v3.oas.annotations.tags.Tag; import jakarta.annotation.Resource; import lombok.extern.slf4j.Slf4j; +import org.apache.commons.lang3.StringUtils; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestMapping; @@ -150,9 +152,12 @@ public class ClothesController { long pageSize = clothesQueryRequest.getPageSize(); QueryWrapper clothesQueryWrapper = clothesService.getQueryWrapper(clothesQueryRequest); Page page = clothesService.page(new Page<>(current, pageSize), clothesQueryWrapper); - List records = page.getRecords(); - - List clothesVOS = commonService.convertList(records, ClothesVO.class); + List clothesList = page.getRecords(); + // 处理富文本字段 + for (Clothes clothes : clothesList) { + if (StringUtils.isNotBlank(clothes.getRichText())) clothes.setRichText(DecoderUtils.decodeText(clothes.getRichText())); + } + List clothesVOS = commonService.convertList(clothesList, ClothesVO.class); Page clothesPageVOPage = new Page<>(); clothesPageVOPage.setRecords(clothesVOS); clothesPageVOPage.setTotal(page.getTotal()); diff --git a/src/main/java/com/cultural/heritage/service/clothes/impl/ClothesServiceImpl.java b/src/main/java/com/cultural/heritage/service/clothes/impl/ClothesServiceImpl.java index ca78e3c..86d2ae5 100644 --- a/src/main/java/com/cultural/heritage/service/clothes/impl/ClothesServiceImpl.java +++ b/src/main/java/com/cultural/heritage/service/clothes/impl/ClothesServiceImpl.java @@ -97,7 +97,7 @@ public class ClothesServiceImpl extends ServiceImpl impl Clothes clothes = this.getById(id); ThrowUtils.throwIf(clothes == null, ErrorCode.OPERATION_ERROR, "服装不存在"); // 处理富文本字段 - clothes.setRichText(DecoderUtils.decodeText(clothes.getRichText())); + if (StringUtils.isNotBlank(clothes.getRichText())) clothes.setRichText(DecoderUtils.decodeText(clothes.getRichText())); // 转换为VO对象 return commonService.copyProperties(clothes, ClothesVO.class); }