我在由其他一些 perl 模块生成的 perl 中有一个未知大小的数组。现在,正是我想找出传递给 jquery 函数的值是否存在于 perl 数组中。
有没有一种方法可以逐个元素地比较输入值与 perl 数组中的每个值?
我环顾四周,看起来我可以通过提供索引来访问 jquery 中的 perl 数组,但我们不知道数组的大小。所以我不知道什么时候停止。
我的石匠代码看起来类似于:
<%perl>
my @testArray = [call to some other perl module to get the values]
</%perl>
<script type="text/javascript">
function checkIfValExistsInTestArray(val) {
// Code to test if "val" exists in "@testArray". Returns boolean true/false.
}
</script>