通过aura:attribute引用静态资源



我已经创建了一个新组件,我希望能够通过aura:attribute传递来自静态资源的图像和自定义标签。这是我尝试过的,但不起作用。如何使图像/文本显示?

<aura:attribute name="profileImage" type="string" default="Standard_Profile" />
<aura:attribute name="categoryName" type="string" default="Standard_Name" />
<img src="{!$Resource + !v.profileImage}" alt="profile pic"/>
<h3>{!$Label.'categoryName'}</h3>

我是Salesforce的新手。

将自定义标签和静态资源中的值映射为属性中的默认值,并在代码中使用

<aura:component implements="flexipage:AvailableForAllPageTypes">
<aura:attribute name="profileImage" type="string" default="{!$Resource.profileImage}" />
<aura:attribute name="categoryName" type="string" default="{!$Label.c.categoryName}" />

<!-- Stand-alone static resources image file-->
<img src="{!v.profileImage}"/>

<!-- custom label -->
<div>
{!v.categoryName}
</div>
</aura:component>

最新更新