2017-10-10 14:19

传 Object[] 可以 但 List 不行

2017-10-10 14:19

String strSql = " select * from menu where id=? ";
List param = new ArrayList();
param.add("d39a10ed-9089-0ff5-e302-9cdcb8ca3788");
Object[] array = new Object[param.size()];
Object[] s = param.toArray(array);
List ls = Db.find(strSql, s);

2017-10-10 11:27

没报错 但数据库中有数据但查询不出来

2017-09-21 17:00

@JFinal 我就是想返回到前台的json 全部是小写的

2017-09-21 16:41

@JFinal 比如数据库中字段是 MP_NAME大写的,然后renderJson(ls);也是大写 ,怎么先把list转json字符串 在toLowerCase

2017-08-23 20:43

@JFinal return (List) Db.find(strSql);

2017-08-23 17:48

@JFinal 我这个是报错的。不知道该如何写

2017-08-23 17:48

@JFinal
能这么写吗
public class JfinalServiceImpl implements JfinalServiceI {
@Override
public List find(String strSql) {
return Db.find(strSql);
}
}

2017-08-23 14:03

@JFinal
private static final Blog dao = new Blog().dao();
那很多函数 每个表都要写 一遍。很不方便
没法写写成 BaseServiceI T 传mode进去 这种形式 别的通用函数就不用写了

有没有办法