码迷,mamicode.com
首页 > 其他好文 > 详细

grails中render、respond、redirect的使用

时间:2020-04-28 16:54:32      阅读:68      评论:0      收藏:0      [点我收藏+]

标签:find   没有   不能   tps   页面   url   https   dal   index   

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

grails中render、respond、redirect的使用

标签:find   没有   不能   tps   页面   url   https   dal   index   

原文地址:https://www.cnblogs.com/guoleidd/p/12795023.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!