可以在 Grails 1.3.7 中漂亮地打印 JSON 吗?

发布于 2024-12-01 09:51:20 字数 366 浏览 2 评论 0 原文

有问题的 JSON 是从 RESTful 服务中读取的,我想将其打印出来(打印到控制台,尽管在 .gsp 中也可以)以进行调试。 Groovy 1.3.7(截至 2011 年 8 月)使用 Groovy 1.7.8(没有 1.8 中引入的 JsonOutput)

注意我目前正在这样阅读它,我不相信这是“最grooviest 或 grail-est” ' 的方式来做到这一点 - 如果采取不同的方式,也许我可以利用转换器和漂亮的打印?代码示例将不胜感激。

   def serviceURL = new URL(theURL)
   def json = new JSONObject(serviceURL.text)
   println json

The JSON in question is being read in from a RESTful service, and I would like to print it out (to console, although in .gsp would be fine also) for debugging purposes. Groovy 1.3.7 (current as of August 2011) uses Groovy 1.7.8 (which does not have the JsonOutput introduced in 1.8)

Note I am currently reading it in like this, which I am not convinced is the 'grooviest or grail-est' way to do it - perhaps I could take advantage of the converters and pretty printing if done differently? Code sample would be appreciated.

   def serviceURL = new URL(theURL)
   def json = new JSONObject(serviceURL.text)
   println json

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

作妖 2024-12-08 09:51:20

您可以使用 toString(int indentFactor) 方法漂亮地打印 JSON。例子:

def json = new JSONObject()
json.put('foo', 'bar')
json.put('blat', 'greep')
println json
===>{"foo":"bar","blat","greep"}
println json.toString(4)
===>{
    "foo": "bar",
    "blat": "greep"
}

You can pretty print JSON with the toString(int indentFactor) method. Example:

def json = new JSONObject()
json.put('foo', 'bar')
json.put('blat', 'greep')
println json
===>{"foo":"bar","blat","greep"}
println json.toString(4)
===>{
    "foo": "bar",
    "blat": "greep"
}
吻泪 2024-12-08 09:51:20

您可以使用 grails.converters.JSON (这是最常用的 JSON 库):

在 config.groovy 文件中,添加行以将 PrettyPrint 设置为 true:

grails.converters.default.pretty.print=true

然后,在控制器中:

import grails.converters.*

def serviceURL = new URL(theURL)
def json = JSON.parse(serviceURL.text)
println "JSON RESPONSE: ${json.toString()"

You can use grails.converters.JSON (which is the most commonly used library for JSON):

In your config.groovy file, add the line to set prettyPrint to true:

grails.converters.default.pretty.print=true

Then, in your controller:

import grails.converters.*

def serviceURL = new URL(theURL)
def json = JSON.parse(serviceURL.text)
println "JSON RESPONSE: ${json.toString()"
一杆小烟枪 2024-12-08 09:51:20

如果您在 Grails 控制器中并计划渲染 json,那么您可以使用类似的内容(使用 Grails 2.3.5):

public prettyJson() {
    JSON json = ['status': 'OK'] as JSON
    json.prettyPrint = true
    json.render response
}

我在这里找到了该解决方案: http://www.intelligrape.com/blog/2012/07/16/rendering-json-with-formatting/

If you're in a Grails controller and plan to render the json, then you use something like this (using Grails 2.3.5):

public prettyJson() {
    JSON json = ['status': 'OK'] as JSON
    json.prettyPrint = true
    json.render response
}

I found that solution here: http://www.intelligrape.com/blog/2012/07/16/rendering-json-with-formatting/

一生独一 2024-12-08 09:51:20

除了在 Config.groovy 中设置默认的漂亮打印之外,JSON 的 toString() 方法还接受一个布尔参数。它控制是否漂亮地打印结果。

import grails.converters.*
import my.data.*

def accountJson = Account.get(1001) as JSON
println(accountJson.toString(true))
println(accountJson.toString(false))

在 Grails 1.3.9 中测试。

Apart from set default pretty print in Config.groovy, JSON's toString() method accepts one boolean parameter. It controls whether pretty print the result or not.

import grails.converters.*
import my.data.*

def accountJson = Account.get(1001) as JSON
println(accountJson.toString(true))
println(accountJson.toString(false))

Tested in Grails 1.3.9.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文