在控制器中使用
render("https://open.weixin.qq.com/connect/oauth2/authorize?appid......")
this.forwardAction("https://open.weixin.qq.com/connect/oauth2/authorize?appid......");
均无法实现跳转
只有
this.redirect("https://open.weixin.qq.com/connect/oauth2/authorize?appid......") this.redirect301("https://open.weixin.qq.com/connect/oauth2/authorize?appid......")
能实现,但是这种redirect,会发送两次请求给 open.weixin.qq.com
我有什么办法实现jfinal 控制器跨域跳转?