在JSP代码中输出JSON格式数据

这篇博客展示了如何在JSP中利用json-taglib.jar库来生成JSON格式的数据,适用于AJAX交互,如购物车应用。通过示例代码解释了如何创建包含商品数量、小计及商品列表的对象。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

如果您喜欢这些文章,欢迎点击此处订阅本Blog title="RSS 2.0" type="application/rss+xml" href="http://feed.feedsky.com/softwave" rel="alternate" /> Blog 订阅

<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.

调用方法:
  1. <%@ taglib prefix="json" uri="http://www.atg.com/taglibs/json" %>
  2. <json:object>
  3.   <json:property name="itemCount" value="${cart.itemCount}"/>
  4.   <json:property name="subtotal" value="${cart.subtotal}"/>
  5.   <json:array name="items" var="item" items="${cart.lineItems}">
  6.     <json:object>
  7.       <json:property name="title" value="${item.title}"/>
  8.       <json:property name="description" value="${item.description}"/>
  9.       <json:property name="imageUrl" value="${item.imageUrl"/>
  10.       <json:property name="price" value="${item.price}"/>
  11.       <json:property name="qty" value="${item.qty}"/>
  12.     </json:object>
  13.   </json:array>
  14. </json:object>
JOSN输出结果:
  1. {
  2.   itemCount: 2,
  3.   subtotal: "$15.50",
  4.   items:[
  5.     {
  6.       title: "The Big Book of Foo",
  7.       description: "Bestselling book of Foo by A.N. Other",
  8.       imageUrl: "/images/books/12345.gif",
  9.       price: "$10.00",
  10.       qty: 1
  11.     },
  12.     {
  13.       title: "Javascript Pocket Reference",
  14.       description: "Handy pocket-sized reference for the Javascript language",
  15.       imageUrl: "/images/books/56789.gif",
  16.       price: "$5.50",
  17.       qty: 1
  18.     }
  19.   ]
  20. }
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>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值