在我准备 ftl 页面的 struts2 操作中
private static List<Product> listOfProducts;
与吸气剂和二传手。此列表充满了产品。列表中的第一个产品类型为 B。
在 ftl 页面中,我正在迭代产品列表
<#list listOfProducts as product>
<select name = product[0].type>
<option value="A">fistType</option>
<option value="B">secondType</option>
<option value="C">thirdType</option>
</select>
</#list>
问题是每次都会预先选择 firstType,即使在列表中我有 B 型产品。
你能告诉我我在这里想念什么吗?为什么加载 ftl 时没有选择选项 B?
谢谢