如何从jsp servlet中的应用程序上下文中检索值
我必须根据常用的值在下拉列表中显示值 那是
多勒 磅 欧元 它应该根据用户最常使用的内容来填充。
例子 如果使用欧元的用户数量较多 它应该在 drop doum 列表中的第一个
I have to display the Values in drop down list based on popularty used one
that is
Doller
Pound
Euro
it should be populated based on which is the one is mostly used by user .
Example
if Euro is more number of user is used
it should be in first in the drop doum list
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为此,您可以在会话中存储每个变量(美元、英镑和欧元)的计数。
当用户选择 Dollar 时,您将在接收 servlet 中执行此操作:
从 JSP 获取值的最简单方法(在显示下拉列表之前)如下所示:
然后比较 DollarCount、poundCount 等的值,以决定命令。
希望这有帮助。
To do this you could store the count of each variable (Dollar, Pound and Euro) in the session.
When a user selects Dollar, you'd do this in your receiving servlet:
Simplest way to get the values from your JSP (before you display the dropdown) is like so:
Then compare the values for dollarCount, poundCount, etc, to decide the order.
Hope this helps.