Wxhander中重写了一个方法,需要带一个filter中使用。
请问该如何做?
public WxOutMsg eventView(WxInMsg msg) {
Wx_user usr = wxUserService.fetch(Cnd.where("openid", "=", msg.getFromUserName()));
if(!Lang.isEmpty(usr))
{
HttpSession session = Mvcs.getHttpSession();
session.setAttribute("wxUsr",usr);
}
return super.eventView(msg);
}
或者其他业务controller如何获当前微信用户的openId?