Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のような簡単なアクションがあります。
def showSomething() { render Color.get(params.id) as JSON }
これにより、Color クラスのすべてのプロパティが JSON としてレンダリングされます。しかし、たとえば、2 つのプロパティだけをレンダリングしたい場合はどうすればよいcolorName and shadeでしょうか?
colorName and shade
オブジェクトをレンダリングするたびに同じプロパティをレンダリングしたい場合、Gjordis には適切なオプションがあります。ただし、次のように簡単に実行できます。
Color color = Color.get(params.id) render ([colorName: color.colorName, shade: color.shade] as JSON)