0

我创建了一个新组件,我希望能够通过 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 很陌生。

4

1 回答 1

0

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

<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>
于 2021-06-19T15:24:02.777 回答