gpt4 book ai didi

java - DropDownChoice 并按返回按钮

转载 作者:行者123 更新时间:2023-12-01 08:49:29 25 4
gpt4 key购买 nike

您好,我创建了 web 应用程序,并且有 DropDownChoice (默认值“A”),但是当我从 DropDownChoice 中选择了某些项目(“B”),然后我执行了一些操作(例如提交),然后在浏览器上按后退按钮后所以我的 DropDownChoice 选择为“B”,但我想要“A”,因为它是默认值

如何处理后按并将 DropDownChoice 设置为默认值???

最佳答案

即使您离开页面后,Wicket 仍会保留页面状态。如果您多次访问同一页面,页面的状态将由 Apache Wicket 存储,并将在用户离开页面之前准确显示给他们。

您需要清除您的模型。

public class AnyPage extends WebPage{

public AnyPage(PageParameters pageParameters){
super(pageParameters);
}
@Override
public void onConfigure(){
// Clear the List of choices here
this.listDropdown.clear();
// set dropdown model to null
this.setDropdown(null);
}

}

@覆盖公共(public)无效onConfigure();每次加载页面时都会执行。

关于java - DropDownChoice 并按返回按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42473150/

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