开发者

how to find size of the feeds at JSTL

开发者 https://www.devze.com 2023-01-14 02:25 出处:网络
I need to find the size of the JSTL and write it to end=\"si开发者_C百科ze of the feed \" at the following code. Could you please help me how to find the size of the feed?

I need to find the size of the JSTL and write it to end="si开发者_C百科ze of the feed " at the following code. Could you please help me how to find the size of the feed?

Regards Altaico

<x:forEach begin="0" end="4" var="story"
           select="$doc/rss/channel/item" varStatus="status">
//end = "size of the rss" 


Just don't specify start and end and every item will be iterated.

<x:forEach var="story"
    select="$doc/rss/channel/item" varStatus="status">
0

精彩评论

暂无评论...
验证码 换一张
取 消