English
detail.render.after
About 119 wordsLess than 1 minute
2025-09-22
Registers a callback function that is executed after the detail page is rendered. You can append custom logic after the detail page rendering is complete.
- Registers a callback function that is executed after the detail page is rendered. Refreshing the detail page will also trigger the callback.
- Inside the callback, you can append custom logic to run after the detail page has finished rendering.
apply() {
return [
{
event: 'detail.render.after',
functional: function (pluginExecResult, options) {
// Logic to execute after the detail page has been rendered
console.log('custom plugin: detail.render.after exec')
}
}
]
}Parameters
For the common event parameters pluginExecResult and options, refer to the corresponding documentation.
Return Value
There is no specific return value.
