gpt4 book ai didi

tapestry - 使用 Tapestry 创建一个简单的 int 选择模型

转载 作者:行者123 更新时间:2023-12-04 16:19:17 26 4
gpt4 key购买 nike

我需要做出一个由选项 1、2、3 ... 250 组成的选择。

<p>
<t:label for="quantity2" style="width:40%" />
<t:select t:id="quantity2" t:model="literal:0,1,2,3,4,5,6,7" />
</p>

此代码有效,但我希望数字最多为 250!

谢谢,抱歉我的英语不好。

最佳答案

来自select component's documentation “当模型参数是一个字符串时,它在逗号处分开。当模型参数是一个字符串列表时,每个元素都被视为一个选择选项。”

因此,我建议您使用字符串列表:

TML

<t:select t:id="quantity2" value="selectedQuantity2" t:model="quantities" />

Java

public List<String> getQuantities() {
// create a list of strings from "1" to "250"
}

关于tapestry - 使用 Tapestry 创建一个简单的 int 选择模型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17618904/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com