如何在Racket中解析JSON?

前端之家收集整理的这篇文章主要介绍了如何在Racket中解析JSON?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我似乎无法弄清楚{ documentation},实际上没有任何解析一些简单JSON数据的例子,所以我想知道这里是否有人可以给我一些例子来开始.

解决方法

这是一个非常简单的例子:
(require json)
(define x (string->jsexpr "{\"foo\": \"bar\",\"bar\": \"baz\"}"))
(for (((key val) (in-hash x)))
  (printf "~a = ~a~%" key val))

以下是如何将它与基于JSON的API一起使用:

(require net/http-client json)
(define-values (status header response)
  (http-sendrecv "httpbin.org" "/ip" #:ssl? 'tls))
(define data (read-json response))
(printf "My IP address is ~a~%" (hash-ref data 'origin))

根据OP的要求,以下是如何从结构类型创建JSON值:

(require json)
(struct person (first-name last-name age country))
(define (person->jsexpr p)
  (hasheq 'first-name (person-first-name p)
          'last-name (person-last-name p)
          'age (person-age p)
          'country (person-country p)))
(define cky (person "Chris" "Jester-Young" 33 "New Zealand"))
(jsexpr->string (person->jsexpr cky))
原文链接:https://www.f2er.com/js/156126.html

猜你在找的JavaScript相关文章