- 当前 Controller 必须 extends BaseController
- 发布事件,然后判断 Handled ,为 true 则停止处理
EventBus.push(ObjectBusEvent.builder() .event("captcha") .data(captchaVerification) .build()); if (context.getHandled()) { return R.error(); }
© 版权声明
THE END
EventBus.push(ObjectBusEvent.builder()
.event("captcha")
.data(captchaVerification)
.build());
if (context.getHandled()) {
return R.error();
}
请登录后查看评论内容