在JSP代碼中輸出JSON格式資料

來源:互聯網
上載者:User

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/ 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.