作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个域类:
class Business {
String name
String description
}
index.gson
:为对象列表生成JSON
_business.gson
:为业务对象生成JSON
index.gson
import server.Business
model {
Iterable businessList
}
json {
result tmpl.business(businessList ?: [])
}
_business.gson
model {
Business business
}
json {
id business.id
name business.name
}
import server.Business
model {
Iterable businessList
}
json {
**WHAT SHOULD I ADD HERE?**
}
json(businessList.toList()) {
**I also noticed that I can use this syntax, BUT WHAT SHOULD I ADD HERE?**
}
最佳答案
您可以在json
闭包内做任何您想做的事情。
json(businessList.toList()) { Business business ->
id business.id
name business.name
description business.description
}
关于json - 如何在不定义内部模板的情况下使用Grails JSON View ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44577426/
我是一名优秀的程序员,十分优秀!