我可以通过任何方式单击报表中的标签,然后根据单击的字段值预览另一个报表。
例如。
下面是我的报告。
# only one Foo object needed
my $foo = Foo.new;
# for Seq.new($foo.iterator) { .say }
for $foo<> { .say }
# (1 string 1)
# (2 string 2)
# (3 string 3)
for $foo<> { .say }
# (1 string 1)
# (2 string 2)
# (3 string 3)
my $iter-a = $foo.iterator;
my $iter-b = $foo.iterator;
say $iter-a.pull-one;
# (1 string 1)
say $iter-a.pull-one;
# (2 string 2)
say $iter-b.pull-one; # notice that $iter-b isn't tied to $iter-a
# (1 string 1)
my @seq = $foo<>;
for @seq { .say }
# (1 string 1)
# (2 string 2)
# (3 string 3)
现在,如果我单击1,则会加载另一个有关AAA的详细信息的报告。