English
pluginService.use.after
About 65 wordsLess than 1 minute
2025-11-24
Plugin self-check event.
- Triggered after all plugins have completed
use
Parameters
| Parameter | Description | Type |
|---|---|---|
| plugins | pluginService.pluginInstance | Array |
| ignore | Plugins filtered out by business type | Array |
Return Value
false: self-check failed, and the loading process will be blocked
Code Example
{
event: "pluginService.use.after",
functional: function (pluginExecResult, options) {
return false;
}
}Notes
- Calling
dataUpdaterin this event is not suitable.
