grails中renderrespondredirect的使用

Posted guoleidd

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了grails中renderrespondredirect的使用相关的知识,希望对你有一定的参考价值。

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中renderrespondredirect的使用的主要内容,如果未能解决你的问题,请参考以下文章

在Grails 3中运行Grails功能测试

Grails:Grails Doc 的替代品? [关闭]

IntelliJ 中的 Grails 3 调试

在 Grails 中使用 JPA 域类

grails无法从插件中找到视图

Grails 日期绑定