我正在尝试使用社区中的静态资源中的图像使用设计属性,例如
<img src="{!$Resource.DealRegChannelRedDot}"/>
但它不起作用。它显示空白,就像路径不正确
<!-- Component -->
<aura:component implements="forceCommunity:availableForAllPageTypes" access="global">
<aura:attribute name="showBannerImage" type="boolean" default="" access="global"/>
<aura:attribute name="bannerImage" type="String" default="" access="global" />
<div class="container">
<aura:if isTrue = "{!v.showBannerImage}">
<aura:unescapedHtml value="{!v.bannerImage}"/>
</aura:if>
</div
</aura:component>
<!-- Design -->
<design:component>
<design:attribute name="showBannerImage" label="Show Banner Image" />
<design:attribute name="bannerImage" label="Banner Image" />
</design:component>
有没有办法使用静态资源来实现这一点