诚然,这个问题难以言表。所以我有一个树枝文件。我已经向该文件发送了一个数组(我使用的是 Symfony 2)。在树枝文件中,我像这样循环遍历数组:
{% for i in 0..numberOfCustomerRecords %}
<option value="{{ i }}">{{ customerRecords[i].cardType }} ending in {{ customerRecords[i].last4 }} Exp: {{ customerRecords[i].expirationMonth }}/{{ customerRecords[i].expirationYear }}</option>
{% endfor %}
这当然是在选择表单字段中。您可以在那里看到我在 for 循环中使用了 'i' 来循环遍历数组,并填充每个选项的值标记以对应于 customerRecords 数组的索引。
现在我有一些 jquery,基本上我想要做的是获取选择框的值,并将该值用作 customerRecords 数组的索引。类似于:{{ customerRecords[$('#customerRecords').val();] }}
显然那是行不通的。但是有没有办法做到这一点?