摘要: 最近刚接触到Vue,他主要是以MVVM为主要的主要风格,那么MVVM是什么呢? M Model 模型 V View 视图 VM ViewModel 视图模型 基本思想:给予view中各种控件一个对应的数据对象,并同步两者,VM就是view对应着Model,将程序员从复杂的DOM操作中解放出来.. 主 阅读全文
posted @ 2018-11-21 10:00 Joey44 阅读(282) 评论(0) 推荐(0) 编辑
摘要: 1.Map中根据字段名存儲: 定义接口:List<Student> selectByCondition1(Map<String,Object> map); 映射文件: 测试类: 2.Map中存儲对象 定义接口:List<Student> selectByCondition2(Map<String,O 阅读全文
posted @ 2018-11-21 09:30 Joey44 阅读(1038) 评论(0) 推荐(0) 编辑
摘要: @RequestParam 用来处理Content-Type: 为 application/x-www-form-urlencoded编码的内容。(Http协议中,如果不指定Content-Type,则默认传递的参数就是application/x-www-form-urlencoded类型) Req 阅读全文
posted @ 2018-11-21 08:40 Joey44 阅读(1260) 评论(0) 推荐(1) 编辑
BACK TO TOP