触发附件对象在闪电体验中不起作用
Trigger on Attachment object not working in lightning experience
我在附件对象上创建了一个触发器,我正在其中执行一些操作(在插入后的附件上)。触发器在 salesforce 经典模式下成功执行,但当我将模式从经典模式更改为闪电模式时,触发器不会执行。
其他对象的触发在闪电中运行成功。我只遇到这个附件对象的问题。
有什么解决办法可以解决这个问题吗?
在经典模式下上传文件时 "Attachment" 执行触发器,在闪电模式下 "ContentDocumentLink" 执行触发器。
试试闪电模式:
trigger ContentDocumentTrigger on ContentDocumentLink (before insert, after Insert) {
if(Trigger.isAfter) {
//enter code here
}
}
希望这会有所帮助!
我在附件对象上创建了一个触发器,我正在其中执行一些操作(在插入后的附件上)。触发器在 salesforce 经典模式下成功执行,但当我将模式从经典模式更改为闪电模式时,触发器不会执行。
其他对象的触发在闪电中运行成功。我只遇到这个附件对象的问题。
有什么解决办法可以解决这个问题吗?
在经典模式下上传文件时 "Attachment" 执行触发器,在闪电模式下 "ContentDocumentLink" 执行触发器。
试试闪电模式:
trigger ContentDocumentTrigger on ContentDocumentLink (before insert, after Insert) {
if(Trigger.isAfter) {
//enter code here
}
}
希望这会有所帮助!