詳細情報:
カスタム Aura コンポーネントへのフローの埋め込み
フローでデータを取得および受信する方法をカスタマイズするには、フローをカスタム Aura コンポーネントに追加します。次にそのコンポーネントをカスタムアクション、Lightning タブ、または Lightning ページを介して配布します。

より一般的な検索語を使用する。
絞り込み条件を減らして、検索範囲を広げる。
フローでデータを取得および受信する方法をカスタマイズするには、フローをカスタム Aura コンポーネントに追加します。次にそのコンポーネントをカスタムアクション、Lightning タブ、または Lightning ページを介して配布します。
フローを Aura コンポーネントに埋め込むには、lightning:flow コンポーネントを追加します。次の例を参照してください。
<aura:component>
<aura:handler name="init" value="{!this}" action="{!c.init}" />
<lightning:flow aura:id="flowData" />
</aura:component>JavaScript コントローラーで、開始するフローを識別します。次の例を参照してください。
({
init : function (component) {
// Find the component whose aura:id is "flowData"
const flow = component.find("flowData");
// In that component, start your flow. Reference the flow's API Name.
flow.startFlow("myFlow");
},
})
We use three kinds of cookies on our websites: required, functional, and advertising. You can choose whether functional and advertising cookies apply. Click on the different cookie categories to find out more about each category and to change the default settings.
Privacy Statement
Required cookies are necessary for basic website functionality. Some examples include: session cookies needed to transmit the website, authentication cookies, and security cookies.
Functional cookies enhance functions, performance, and services on the website. Some examples include: cookies used to analyze site traffic, cookies used for market research, and cookies used to display advertising that is not directed to a particular individual.
Advertising cookies track activity across websites in order to understand a viewer’s interests, and direct them specific marketing. Some examples include: cookies used for remarketing, or interest-based advertising.