我正在使用 Grails 3.2.2 和 org.grails.plugins:views-gradle:1.1.1 并且在我的 gson 部分中,我想扩展所有用户及其证件。我试过了:
import com.example.sections.Section
model {
Section section
}
json g.render(section, [excludes:['archived', 'deleted'], expand:['clients', 'clients.carnets']]){
}
但它只在结果 json 中扩展客户端。我怎样才能做到这一点?顺便说一句,客户端域类中的通行证是临时的。是否可以将瞬态变量添加到结果 gson?如果是这样 - 如何?