在wicket 1.4.9中,setModelValue(“”)接受字符串作为参数,但在1.5中它需要String Array, 我有如下所示的代码,任何人都知道如何将setModelValue(“”)修改为6.x或7.x。
if (!onlineVerfStatus) {
TextField captcha = class.getValue("captcha");
captchaDisplayTxt.setModelObject(generateCaptcha());
captcha.clearInput();
captcha.setModelValue("");
return;
}
答案 0 :(得分:0)
captcha.setModelValue(new String[] {""});