使用EL获取列表或数组中的特定元素
在Java EE页面(Facelets或JSP)中使用EL获取列表或数组中的特定元素是可能的,还是必须创build自定义EL方法?
您可以使用大括号[]
其中您指定要检索的元素(从零开始)的索引。
<p>This is the 3rd item of the list: #{bean.list[2]}</p>
这个语法和bean.getList().get(2)
基本相同。
这相当于数组。
<p>This is the 3rd item of the array: #{bean.array[2]}</p>
这个语法基本上和bean.getArray()[2]
。
也可以看看:
- 我们的EL维基页面