@@ -760,7 +760,9 @@ public class PublicController extends BaseController {
Pagination<JtBusinessProjectResult> pagination=jtBusinessService.getProjects(null,null, null, null, pageSize, pageNo, 0, 2, null, null, 0, 0, uid);
List<JtBusinessProjectResult> list=(List<JtBusinessProjectResult>) pagination.getList();
for (JtBusinessProjectResult j : list) {
- j.setIntroduce(j.getIntroduce().replaceAll("\\<.*?>", ""));
+ if (j.getIntroduce()!=null) {
+ j.setIntroduce(j.getIntroduce().replaceAll("\\<.*?>", ""));
+ }
}
res.setData(pagination);
return res;