通过 aura:attribute 引用静态资源
Referance a static resource via aura:attribute
我创建了一个新组件,我希望能够通过 aura:attribute 传递来自静态资源和自定义标签的图像。这是我尝试过的方法,但没有用。如何让 image/text 显示?
<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>
我创建了一个新组件,我希望能够通过 aura:attribute 传递来自静态资源和自定义标签的图像。这是我尝试过的方法,但没有用。如何让 image/text 显示?
<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>