-
Finally, check to see if the request made was a form post or a file upload, in which case you output the data as a valid HTML page with the JSON-encoded output contained in a HTML element.
最后,查看请求是一个表单post还是文件上传,在这种情况下,输出数据作为一个有效的HTML页面,该页面的 元素中含有JSON格式编码的输出。
-
After you've completed the JSON-RPC service, you can install it to be served by Apache HTTPD by adding the code shown in Listing 18 to the httpd.conf file.
完成JSON-RPC服务之后,可以在httpd.conf文件中添加清单18所示的代码,让ApacheHTTPD提供它以供使用。
-
The sort call in Listing 16 requires a JSON document looking like {value:-1}, which means I want things sorted backward, with the maximum value on top.
清单16中的sort调用需要一个看上去像 {value:-1} 的JSON文档,这意味着我希望按降序排列,即最大值位于顶端。
-
An instance of the com.ibm.portal.streaming.json.JSONHandler is used to create a document to which JSON pairs showing the exception are added as shown in listing 5.
JSONHandler 的一个实例用于创建一个文档,对此文档 JSON 对显示添加的异常,如清单 5 所示。
-
The response to this request is an Atom or JSON feed containing a list of matching users, together with their name and Google ID.
该请求的响应是一个 Atom 或 JSON 提要,其中包含一系列匹配的用户,以及他们的姓名和 Google ID。
-
If you are already impressed by the short example then you will save a lot of time from now on when working with JSON.
如果这个短小的例子已经打动你,那么当你开始使用JSON时会帮你省下更多时间。
-
Unfortunately, while this does work — and it does send back a JSON representation of the results — it doesn't delve deep enough.
遗憾的是,尽管这段代码起到了作用(它的确返回了结果的一个JSON表示),但不够深入。
-
It's also very easy to create JSON as you can see in the JSON version of the Ajax search page in Listing 8.
创建 JSON 也很简单,就如您在 清单 8 中的 Ajax 搜索页面的 JSON 版本中所见的那样。
-
One simple way to convert this data is to create general parser code that converts JSON data into an Objective-C application data object.
转换这类数据的一个简单方法是创建一个通用解析器代码,该代码可以将 JSON 数据转换成一个 Objective-C 应用程序数据对象。
-
The data shown in Listing 4 has not just been aggregated by the reduce step, but it has also been formatted into JSON.
清单 4 中的数据不仅仅被 reduce 步骤聚合,它还被格式化为 JOSN 格式。
1. JSON(JavaScriptObject Notation, JS 对象简谱) 是一种轻量级的数据交换格式。它基于ECMAScript(欧洲计算机协会制定的js规范)的一个子集,采用完全独立于编程语言的文本格式来存储和表示数据。简洁和清晰的层次结构使得 JSON 成为理想的数据交换语言。 易于人阅读和编写,同时也易于机器解析和生成,并有效地提升网络传输效率。