如果您喜欢这些文章,欢迎点击此处订阅本Blog
title="RSS 2.0" type="application/rss+xml" href="http://feed.feedsky.com/softwave" rel="alternate" />
<script type="text/javascript"> </script> <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> </script>
JSON-taglib是一套JSP标签库用于在JSP代码中输出JSON格式的数据。
JSON-taglib利用json:array, json:object和json:property来实现数据格式的转换。
JOSN输出结果:
Be sure to check out
the examples or
the tutorial for more information about how to use the taglib.
官网: http://json-taglib.sourceforge.net/
<script type="text/javascript"> </script> <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> </script>
<script type="text/javascript"> </script> <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> </script>
<script type="text/javascript" src="http://www.google.com/reader/ui/publisher.js"></script> <script type="text/javascript" src="http://www.google.com/reader/public/javascript/user/00697638153916680411/state/com.google/broadcast?n=5&callback=GRC_p(%7Bc%3A%22green%22%2Ct%3A%22%5Cu8FD9%5Cu4E9B%5Cu6587%5Cu7AE0%5Cu4E5F%5Cu503C%5Cu5F97%5Cu4E00%5Cu770B%22%2Cs%3A%22false%22%7D)%3Bnew%20GRC"></script>

<script type="text/javascript"> </script> <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> </script>
JSON-taglib是一套JSP标签库用于在JSP代码中输出JSON格式的数据。
JSON-taglib利用json:array, json:object和json:property来实现数据格式的转换。
下面是具体用法:
Just drop the json-taglib.jar file into the WEB-INF/lib directory of your web-application.
Here's a quick example of how the taglib could be used with an AJAX e-commerce shopping cart. Check out the examples or the tutorial for full details of how to use the taglib.
调用方法:- <%@ taglib prefix="json" uri="http://www.atg.com/taglibs/json" %>
- <json:object>
- <json:property name="itemCount" value="${cart.itemCount}"/>
- <json:property name="subtotal" value="${cart.subtotal}"/>
- <json:array name="items" var="item" items="${cart.lineItems}">
- <json:object>
- <json:property name="title" value="${item.title}"/>
- <json:property name="description" value="${item.description}"/>
- <json:property name="imageUrl" value="${item.imageUrl"/>
- <json:property name="price" value="${item.price}"/>
- <json:property name="qty" value="${item.qty}"/>
- </json:object>
- </json:array>
- </json:object>
- {
- itemCount: 2,
- subtotal: "$15.50",
- items:[
- {
- title: "The Big Book of Foo",
- description: "Bestselling book of Foo by A.N. Other",
- imageUrl: "/images/books/12345.gif",
- price: "$10.00",
- qty: 1
- },
- {
- title: "Javascript Pocket Reference",
- description: "Handy pocket-sized reference for the Javascript language",
- imageUrl: "/images/books/56789.gif",
- price: "$5.50",
- qty: 1
- }
- ]
- }
官网: http://json-taglib.sourceforge.net/
<script type="text/javascript"> </script> <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> </script>
<script type="text/javascript"> </script> <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> </script>
<script type="text/javascript" src="http://www.google.com/reader/ui/publisher.js"></script> <script type="text/javascript" src="http://www.google.com/reader/public/javascript/user/00697638153916680411/state/com.google/broadcast?n=5&callback=GRC_p(%7Bc%3A%22green%22%2Ct%3A%22%5Cu8FD9%5Cu4E9B%5Cu6587%5Cu7AE0%5Cu4E5F%5Cu503C%5Cu5F97%5Cu4E00%5Cu770B%22%2Cs%3A%22false%22%7D)%3Bnew%20GRC"></script>