墨染丶

导航

grails中render、respond、redirect的使用

render: 

界面跳转(url不变)、向网页输出数据(接口都用这个)
render 之后,程序会继续执行,但是 后面不能使用 redirect 、respond
例如:

def test()
{
  def json = new JSON(School.findAll().first())
  json.setExcludes(Student.class,["class","school"])
  render json
  println 'xxxxxxxxxxxxxxxx'
  redirect view:'index'
}

redirect:
重定向,url会改变
respond之后,程序会继续执行,后面不能再次使用redirect,虽可以使用render、respond、但是没有任何作用

respond:
向页面返回数据
respond之后,程序会继续执行,后面可以使用render、redirect,但respond无作用

原文链接:https://blog.csdn.net/u014207158/java/article/details/53143105

posted on 2020-04-28 16:18  墨染丶  阅读(390)  评论(0编辑  收藏  举报