トースト表示の備忘録。
詳細については公式サイトをご確認ください。
developer.salesforce.com
(例)
ボタンクリック後画面の上部に処理成功のトーストを表示
controller.js
showToastSuccess : function(component, event, helper) { var toastEvent = $A.get('e.force:showToast'); toastEvent.setParams({ title: '処理が完了しました', message:'問題がなければこちらのページを閉じてください', type:'success', duration:'5000' ←単位:ミリ秒 5秒表示するという意味 }); toastEvent.fire(); }