level 2
怎么得到model里面的参数呢 比如 model里面 有个 username password 怎么得到这两个值呢
2014年12月17日 14点12分
1
level 1
??没明白你啥意思。
action 实现的ModelDriven<T>
public T model=new T();
public abstract T getModel(){return model;}
2020年05月31日 18点05分
3
level 1
private String username;
getUsername(){
this.username=username;
}
/*
网页上POST 方式提交 username,
*/
2021年06月14日 13点06分
4