如果您喜歡這些文章,歡迎點擊此處訂閱本Blog

日韩久久久精品,亚洲精品久久久久久久久久久,亚洲欧美一区二区三区国产精品 ,一区二区福利

在JSP代碼中輸出JSON格式數(shù)據(jù)

系統(tǒng) 1812 0
<!-- Feedsky FEED發(fā)布代碼開始 --> 如果您喜歡這些文章,歡迎點擊此處訂閱本Blog <!-- FEED自動發(fā)現(xiàn)標記開始 --> <link title="RSS 2.0" type="application/rss+xml" rel="alternate"> <!-- FEED自動發(fā)現(xiàn)標記結(jié)束 --> Blog 訂閱

<!--Google 468*60橫幅廣告開始--><script type="text/javascript"><!-- google_ad_client = "pub-7343546549496470"; google_ad_width = 468; google_ad_height = 60; google_ad_format = "468x60_as"; google_ad_type = "image"; //2007-07-26: CSDN google_ad_channel = "6063905817"; google_color_border = "6699CC"; google_color_bg = "E6E6E6"; google_color_link = "FFFFFF"; google_color_text = "333333"; google_color_url = "AECCEB"; google_ui_features = "rc:6"; //--> </script><script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> </script><!--Google 468*60橫幅廣告結(jié)束-->

JSON-taglib是一套JSP標簽庫用于在JSP代碼中輸出JSON格式的數(shù)據(jù)。
JSON-taglib利用json:array, json:object和json:property來實現(xiàn)數(shù)據(jù)格式的轉(zhuǎn)換。

下面是具體用法:

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.

調(diào)用方法:
  1. <%@taglibprefix= "json" uri= "http://www.atg.com/taglibs/json" %>
  2. <json:object>
  3. <json:propertyname= "itemCount" value= "${cart.itemCount}" />
  4. <json:propertyname= "subtotal" value= "${cart.subtotal}" />
  5. <json:arrayname= "items" var= "item" items= "${cart.lineItems}" >
  6. <json:object>
  7. <json:propertyname= "title" value= "${item.title}" />
  8. <json:propertyname= "description" value= "${item.description}" />
  9. <json:propertyname= "imageUrl" value= "${item.imageUrl" />
  10. <json:propertyname= "price" value= "${item.price}" />
  11. <json:propertyname= "qty" value= "${item.qty}" />
  12. </json:object>
  13. </json:array>
  14. </json:object>
JOSN輸出結(jié)果:
  1. {
  2. itemCount:2,
  3. subtotal: "$15.50" ,
  4. items:[
  5. {
  6. title: "TheBigBookofFoo" ,
  7. description: "BestsellingbookofFoobyA.N.Other" ,
  8. imageUrl: "/images/books/12345.gif" ,
  9. price: "$10.00" ,
  10. qty:1
  11. },
  12. {
  13. title: "JavascriptPocketReference" ,
  14. description: "Handypocket-sizedreferencefortheJavascriptlanguage" ,
  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.
官網(wǎng): http://json-taglib.sourceforge.net/

<!--新Google 468*60橫幅廣告開始--><script type="text/javascript"><!-- google_ad_client = "pub-7343546549496470"; /* 468x60, 創(chuàng)建于 08-8-6 */ google_ad_slot = "7368701459"; google_ad_width = 468; google_ad_height = 60; //--> </script><script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> </script><!--新Google 468*60橫幅廣告結(jié)束-->

<!--新Google 468x15 橫鏈接單元開始--><script type="text/javascript"><!-- google_ad_client = "pub-7343546549496470"; /* 468x15 橫鏈接單元 */ google_ad_slot = "5785741422"; google_ad_width = 468; google_ad_height = 15; //--> </script><script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> </script><!--新Google 468x15 橫鏈接單元結(jié)束-->

<!-- Google Reader shared發(fā)布代碼開始 --><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&amp;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><!-- Google Reader shared發(fā)布代碼結(jié)束 -->

在JSP代碼中輸出JSON格式數(shù)據(jù)


更多文章、技術(shù)交流、商務(wù)合作、聯(lián)系博主

微信掃碼或搜索:z360901061

微信掃一掃加我為好友

QQ號聯(lián)系: 360901061

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點擊下面給點支持吧,站長非常感激您!手機微信長按不能支付解決辦法:請將微信支付二維碼保存到相冊,切換到微信,然后點擊微信右上角掃一掃功能,選擇支付二維碼完成支付。

【本文對您有幫助就好】

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描上面二維碼支持博主2元、5元、10元、自定義金額等您想捐的金額吧,站長會非常 感謝您的哦!!!

發(fā)表我的評論
最新評論 總共0條評論
主站蜘蛛池模板: 酉阳| 锦屏县| 九江县| 偃师市| 镇江市| 海门市| 咸宁市| 玛纳斯县| 宁阳县| 阜新市| 谷城县| 万山特区| 张掖市| 延津县| 五峰| 库车县| 昌吉市| 营口市| 赣榆县| 吉林省| 安顺市| 镇宁| 河北区| 苏尼特右旗| 印江| 兰西县| 万安县| 宁国市| 扎鲁特旗| 淮安市| 西乌珠穆沁旗| 吴旗县| 郓城县| 巴楚县| 九台市| 崇仁县| 岑溪市| 遂平县| 沽源县| 辉县市| 扶余县|