电脑故障

位置:IT落伍者 >> 电脑故障 >> 浏览文章

添加后台list给前台select标签赋值简单实现


发布日期:2021/8/18
 
本文为大家介绍下通过添加后台list怎么实现给前台select标签赋值具体代码如下感兴趣的朋友可以参考下哈复制代码 代码如下:
$ajax({
url : "user!findUserListaction"
type : "post"
success: function(data){
var jsonObj=eval("("+data+")");
$each(jsonObj function (i item) {
jQuery("#userList")append("<option value="+ itemuserId+">"+ itemuserRealName+"</option>");
});
}
error: function(text) {}
}); 复制代码 代码如下:
public void findUserList() throws IOException {
List<UserModel> roleuserList = userServicefindUserList();
String json = JSONArrayfromObject(roleuserList)toString();
writeHtml(json);;
} 复制代码 代码如下:


protected void writeHtml(String strData) {
try {
responsesetContentType("text/html; charset=UTF");
PrintWriter pw = responsegetWriter();
pwwrite(strData);
pwflush();
pwclose();
} catch (IOException e) {
logerror("writeHtml()" e);
}
}

上一篇:将一个BigDecimal类型的数转换成中文

下一篇:加载远程图片时,经常因为缓存而得不到更新的解决方法