2017-07-10 13:41
如果表单参数较少可以用
最简单的办法是在form表单的action属性上使用 urlPara 或者用问号挂参的方式将 path 传过来,这样就可以在 getFile() 之前通过 getPara(...) 获取了,例如:
action="/upload?filePath=/mypath/..."
filePath = getPara("filePath");
uf = getFile("filePath");
还有一种办法麻烦点,
先 uf = getFile()
然后,filePath = getPara("filePath");
最后再用 uf.renameTo(filePath + fileName) 做后续的转换
--------jfinal语录
23333333
2017-06-17 10:44
@qiuzhiwei java final 哈哈还有海哥的 afinal = android final 都是我喜欢的
2017-06-17 10:37
public class IndexController extends Controller {
static BlogService service = new BlogService();
public void index() {
// render("index.html");
setAttr("blogPage", service.paginate(getParaToInt(0, 1), 10));
render(new XmlRender("books.xml"));
}
}
语法是Template魔版
books.xml 文件:
#for(x : blogPage.getList())
#(x.id)
#(x.title)
#end