(2) json-taglib ()
它是建立在org.json库的基础上(对应于包里面的atg.taglib.json.util.*),采用jsp的自定义标签,它定义了object,property,array这三种json的类型(没有定义function), 下面是它的官方网站上面的例子.
<%@ taglib prefix="json" uri="http://www.atg.com/taglibs/json" %>
<json:object>
<json:property value="${cart.itemCount}"/>
<json:property value="${cart.subtotal}"/>
<json:array var="item" items="${cart.lineItems}">
<json:object>
<json:property value="${item.title}"/>
<json:property value="${item.description}"/>
<json:property value="${item.imageUrl"/>
<json:property value="${item.price}"/>
<json:property 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
}
]
}
-----------------------------------------------------
<%@ taglib prefix="json" uri="http://www.atg.com/taglibs/json" %>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
<json:object>
<json:property value="${cart.itemCount}"/>
<json:property>
<fmt:formatNumber value="${cart.subtotal}" type="currency" currencyCode="${cart.currency}"/>
</json:property>
<json:array var="item" items="${cart.lineItems}">
<json:object>
<json:property value="${item.title}"/>
<json:property value="${item.description}"/>
<json:property value="${item.imageUrl"/>
<json:property>
<fmt:formatNumber value="${item.price}" type="currency" currencyCode="${cart.currency}"/>
</json:property>
<json:property value="${item.qty}"/>
</json:object>
</json:array>
</json:object>
发表评论
您还没有登录,请您登录后再发表评论