라이믹스에서 리스트에서 글본문 중 설문조사 영역이 노출 안되는 문제가 궁금합니다.
리스트에서 본문 내용을 출력하게 했는데요.
설문조사는 동작을 안하던데 이건 어떻게 해야 나오는지 혹시 아시는 분 계실까요?
{$document->getContent(false)}
이렇게 하면 글 본문 텍스트는 출력되는데 설문조사는 안나오네요 ㅠ
사용한 코드
@php $maxLength = 350; if(mb_strlen(strip_tags($document->getContent(false))) > $maxLength){ // $content = preg_replace('/<img[^>]*>/', '', $document->variables['content']); // $shortContent = mb_substr($content, 0, $maxLength) . '...'; $fullUrl = getUrl('document_srl', $document->document_srl); // 문서의 URL 생성 $content = $document->getSummary($maxLength); $content .= " <a href='" . $fullUrl . "' class='read-more'>더보기</a>"; echo $content; }else{ // echo '이하'; $content = preg_replace('/<img[^>]*>/', '', $document->variables['content']); // echo $document->getContent(false); echo $content; } @endphp @if($document->getUploadedFiles()) <div class="img-box"> @foreach($document->getUploadedFiles() as $key => $file) <img src="{$file->uploaded_filename}"> @php $path = pathinfo($file->source_filename); $ext = strtolower($path['extension']); @endphp @endforeach </div> @endif
이렇게 하면 나오네요. 대신 설문조사가 있으니 답글 작성 버튼이 안 먹히네요.
#버그
일반이미지
<img src="/files/attach/images/2025/02/03/2e00d24f27eaa491f1b16480dbac8674.jpg" style="width: auto;" class="fr-fic fr-dii">
설문조사 컴포넌트
<img src="../../../../common/img/blank.gif" poll_srl="472053" editor_component="poll_maker" skin="default" style="width: 400px; height: 300px; border: 2px dotted rgb(67, 113, 185); background: url('./modules/editor/components/poll_maker/tpl/poll_maker_component.gif') center center no-repeat;" class="fr-fil fr-dib">
라이믹스에서 본문 글을 출력하지 않고 별도의 칸에 출력하게 해주고 있어.
그런데 문제는 설문조사도 동일한 img 태그로 시작한다는거지.
1) 일반이미지
<img src="/files/attach/images/2025/02/03/2e00d24f27eaa491f1b16480dbac8674.jpg" style="width: auto;" class="fr-fic fr-dii">
2) 설문조사 컴포넌트
<img src="../../../../common/img/blank.gif" poll_srl="472053" editor_component="poll_maker" skin="default" style="width: 400px; height: 300px; border: 2px dotted rgb(67, 113, 185); background: url('./modules/editor/components/poll_maker/tpl/poll_maker_component.gif') center center no-repeat;" class="fr-fil fr-dib">
이런 차이가 있어. 설문조사 컴포넌트에서는 editor_component라는 값이 있는데 이 값이 있으면 제외하지 않고, 딱 일반이미지인 경우만 컨텐츠에서 제외해서 출력하도록 해주고 싶어.
기존 코드에서 이미지를 제거하는 부분이 있어.. 수정함.