关于接收对象参数是数组问题的处理

前端是复选框或者数组一类的参数,怎么才能更快捷的接受处理这类参数?

查看getModel()方法源码,发现给对象属性赋值值只取了数组的第一个值,可不可以这样处理,把参数数组的值进行处理,拼接成固定格式的字符串,然后在赋值,这样就可以处理前端数组问题,不知道这样处理有没有隐患,望答疑。

评论区

JFinal

2016-12-08 11:37

jfinal 作为框架,只能做一些权衡取舍,实现最常用的功能,这类同一个 name 提交数组的情况可以创建中间类 BaseController 来根据业务扩展出来,jfinal 对数组获取提供了最基本的方法:getParaValues(...),再不就是可以先通过 getRequest() 拿到最原始的 HttpServletRequest 对象以后,再自由进行扩展操作

根据业务去做这些功能没有什么隐患,希望你搞定以后可以回社区分享给大家,感谢反馈

gsmoking

2016-12-08 11:43

好的,谢谢提示,弄好以后一定及时分享

gsmoking

2016-12-08 13:31

处理好了,在自己的BaseService中重写了getModel方法的实现,给对象属性赋值时不再只取数组的第一个元素,先将数组转换成字符串,然后在进行赋值,这样的话多元素数组需要对应字符串类型的属性,方法如下

@SuppressWarnings("unchecked")
public static final T injectModel(Class modelClass, String modelName, HttpServletRequest request, boolean skipConvertError) {
Object temp = createInstance(modelClass);
if (temp instanceof Model == false) {
throw new IllegalArgumentException("getModel only support class of Model, using getBean for other class.");
}

Model model = (Model)temp;
Table table = TableMapping.me().getTable(model.getClass());
if (table == null) {
throw new ActiveRecordException("The Table mapping of model: " + modelClass.getName() +
" not exists or the ActiveRecordPlugin not start.");
}

String modelNameAndDot = StrKit.notBlank(modelName) ? modelName + "." : null;
Map parasMap = request.getParameterMap();
// 对 paraMap进行遍历而不是对table.getColumnTypeMapEntrySet()进行遍历,以便支持 CaseInsensitiveContainerFactory
// 以及支持界面的 attrName有误时可以感知并抛出异常避免出错
for (Entry entry : parasMap.entrySet()) {
String paraName = entry.getKey();
String attrName;
if (modelNameAndDot != null) {
if (paraName.startsWith(modelNameAndDot)) {
attrName = paraName.substring(modelNameAndDot.length());
} else {
continue ;
}
} else {
attrName = paraName;
}

Class colType = table.getColumnType(attrName);
if (colType == null) {
if (skipConvertError) {
continue ;
} else {
throw new ActiveRecordException("The model attribute " + attrName + " is not exists.");
}
}

try {
String[] paraValueArray = entry.getValue();
String paraValue = "";
if(paraValueArray != null && paraValueArray.length > 0){
//当数组长度大于1时,对应属性的类型必须为字符串,否则抛出类型转换异常
for(int i= 0; i < paraValueArray.length; i++){
paraValue += "," + paraValueArray[i];
}
}
if(!paraValue.isEmpty()){
paraValue = paraValue.substring(1);
model.set(attrName, TypeConverter.convert(colType, paraValue));
} else {
model.set(attrName, null);
}
} catch (Exception e) {
if (skipConvertError == false) {
throw new RuntimeException("Can not convert parameter: " + paraName, e);
}
}
}

return (T)model;
}

JFinal

2016-12-08 14:28

@gsmoking 感谢回来分享,赞一个

热门反馈

扫码入社