在一项相当简单的任务上有点卡住了。目录部分有预览和详细图像,我想在模板中显示它。
写作
<img src="<?=$arSection["DETAIL_PICTURE"]["SRC"]?>" alt="<?=$arSection["DETAIL_PICTURE"]["ALT"]?>"/>
我正在尝试(检查它是否显示图像)。
<img src="<?=$arSection["PREVIEW_PICTURE"]["SRC"]?>" alt="<?=$arSection["PREVIEW_PICTURE"]["ALT"]?>"/>
不起作用
,只是通过写作
<img src="<?=$arSection["PICTURE"]["SRC"]?>" alt="<?=$arSection["PICTURE"]["ALT"]?>"/>
我得到预览图像
告诉我如何显示详细
模板的完整代码附后
<main class="wrapper">
<section>
<div class="flex column-flex content">
<h4>КАТАЛОГ</h4>
<?
$CURRENT_DEPTH=$arResult["SECTION"]["DEPTH_LEVEL"]+1;
foreach($arResult["SECTIONS"] as $arSection):
if($CURRENT_DEPTH==$arSection["DEPTH_LEVEL"])
{
?>
<div class="flex row-flex catalog-first-box">
<div class="catalog-first-img"><img src="<?=$arSection["PICTURE"]["SRC"]?>" alt="<?=$arSection["PICTURE"]["ALT"]?>"/></div>
<div class="flex column-flex catalog-first-text">
<h2><?=$arSection["NAME"]?></h2>
<a href="<?=$arSection["SECTION_PAGE_URL"]?>" class="btn-gray">ПОДРОБНЕЕ</a>
</div>
</div>
<?
}
?>
<?endforeach?>
</div>
</section>
</main>