我有一个自定义 lwc 组件,带有一个新按钮。我正在使用NavigationMixin在按下自定义组件上的新建按钮时利用标准的新记录创建表单。有没有一种方法可以控制在标准表单上单击保存后要执行的操作。这是用于导航到新记录创建表单的示例代码。我想控制单击保存后要执行的操作。
this[NavigationMixin.Navigate]({
type: 'standard__objectPage',
attributes: {
objectApiName: this.items.relatedObjectApiName,
actionName: "new"
},
state: {
nooverride: '1',
defaultFieldValues: this.items.relatedFieldApiName+"="+this.recordId,
recordTypeId: recTypeId
}
});