@Ok("beetl:/platform/yd/wx/order.html")
一般在方法结束时,就可以跳转到我要的页面,但是我现在要在ActionFilter实现类中使用
@Override
public View match(ActionContext context) {
String openid = Strings.sNull(context.getRequest().getSession().getAttribute("openid"));
if (cloudBindService.count(Cnd.where("id","=",openid))<=0) {
return new ForwardView(path);
}
return null;
}
单纯的将具体路径赋值到path中可以跳转,但是无法beetl没有渲染,求指教该怎么改?