Loading

struts2 checkboxlist赋值的问题

checkboxlist 可以选择多个值, 在action中用string型接值时接到的是像这样的值 A,B,C

面从DB中往页面写给checkboxlist赋值则要求这么写

Action中:

 private String[] selQuestionAnswer = null;

/**
* @return the selQuestionAnswer
*/
public String[] getSelQuestionAnswer() {
return selQuestionAnswer;
}

/**
* @param selQuestionAnswer the selQuestionAnswer to set
*/
public void setSelQuestionAnswer(String[] selQuestionAnswer) {
this.selQuestionAnswer = selQuestionAnswer;
}

action中赋值 ,要这么写,也就是把值用split的方式,转成数组

this.setSelQuestionAnswer(bean.getQUESTION_ANSWER().split("|"));

JSP中:

<s:checkboxlist value ="selQuestionAnswer" theme="simple" name="questionAnswer"

      list="questionAnswerList8c" listKey="key" listValue="value"></s:checkboxlist>

主要是这个value的值,必须是String[] 型才能赋上多个值,否则只能把一个checkbox check上

 

 

作者:lost0

出处:https://www.cnblogs.com/lost0/archive/2013/03/28/2987640.html

版权:本作品采用「署名-非商业性使用-相同方式共享 4.0 国际」许可协议进行许可。

posted @   码农加一  阅读(1773)  评论(0编辑  收藏  举报
more_horiz
keyboard_arrow_up dark_mode palette
选择主题
点击右上角即可分享
微信分享提示