四十 Salesforce LWC学习 dynamic interaction 浅入浅出( 二 )

propertySummary.js:  增加这个方法 , 创建一个自定义的事件 。
handleSuccessAction(event) {let updatePropertyId = JSON.stringify(new Date());const itemUpdated = new CustomEvent('itemUpdated', {detail: {updateTimeStamp: updatePropertyId}});this.dispatchEvent(itemUpdated);}propertySummary.js-meta.xml:在 targetConfig 为 lightning_AppPage下,增加以下粗体的 event属性以及schema属性 。其中 property内容设置我们要传递的参数
<?xml version="1.0" encoding="UTF-8" ?><LightningComponentBundle xmlns="http://soap.sforce.com/2006/04/metadata"><apiVersion>55.0</apiVersion><isExposed>true</isExposed><masterLabel>Property Summary</masterLabel><targets><target>lightning__AppPage</target><target>lightning__RecordPage</target></targets><targetConfigs><targetConfig targets="lightning__AppPage"><supportedFormFactors><supportedFormFactor type="Large" /><supportedFormFactor type="Small" /></supportedFormFactors>

推荐阅读