问题描述
我正在使用iReport 5生成PDF。我有几个包含要显示的对象的列表,这很容易。我无法显示来自 List< String>
的值。
我把它作为参数传递,我正确配置数据源,但不知道如何命名字符串。
当我得到对象列表时很容易 - 如果你想从obcject获得字段xxx你使用 $ F {xxx}
它可以工作,但是如何显示对象?我尝试了 $ F {_this}
,但收到的错误是它无法识别。
I'm using iReport 5 to generate PDF. I got few lists containing some objects to display, and it's the easy part. I got stuck on displaying values from List<String>
.
I pass it as a parameter, I configured data source correctly, but have no idea how to name the string.
When I got list of objects it's easy - if you want to get field xxx from obcject you use $F{xxx}
and it works, but how to display a object? I tried $F{_this}
, but got error saying that it's non recognizable.
推荐答案
你很亲密。创建一个名为_THIS的字段应该可以工作。
You were close. Creating a field called _THIS should work.
这篇关于jaspersoft如何显示列表中的值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!