我有多个屏幕的流程。由于我的用例,对于我的第三个屏幕,我创建了一个具有一个输入字段的闪电组件。所以第三屏是调用闪电组件。
这是代码:
<aura:component implements="lightning:availableForFlowScreens" access="global">
<!-- When the component renders, call the init handler. -->
<aura:handler name="init" value="{!this}" action="{!c.init}"/>
<!-- Attribute to store the validation logic in. -->
<aura:attribute name="validate" type="Aura.Action" description="Custom validation function to run when the flow is navigated to the next screen. The function must evaluate the component and return values for isValid and errorMessage."/>
<aura:attribute name="Name_Text" type="String"/>
<lightning:input aura:id="Name_Input" type="text" label="What is your name?" value="{!v.Name_Text}"/>
</aura:component>
我想将用户输入的值存储在名称字段(闪电组件)中,并将其传递到我的流程中的第四个屏幕,类似于附加的屏幕截图。