数据处理
Posted Realvie
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了数据处理相关的知识,希望对你有一定的参考价值。
1.提交数据的处理
a)提交的域名称和处理方法的参数一致即可
//处理方法: @RequestMapping("/hello") public String hello(String name){ System.out.println(name); return "index.jsp"; }
b) 提交的域名称和处理方法的参数不一致
提交的数据
//处理方法: @RequestMapping("/hello") /* * @RequestParam("uname")uname是提交的域的名称 * */ public String hello(@RequestParam("uname")String name){ System.out.println(name); return "index.jsp"; }
c)提交是一个对象。要求提交的form域名和对象的属性名一致,参数使用对象即可
//处理方法: @RequestMapping("/person") public String person(Person p){ System.out.println(p); return "index.jsp"; } //实体类: public class Person { private int ind; private String name; private String pwd; //省略get/set方法 }
2.将数据显示到view层
第一种通过ModelAndView--需要视图解析器
public class HelloController implements Controller { @Override public ModelAndView handleRequest(HttpServletRequest req, HttpServletResponse resp) throws Exception { // TODO Auto-generated method stub ModelAndView mav = new ModelAndView(); //封装要显示到视图中的数据 mav.addObject("msg", "hello springmvc"); //视图名 mav.setViewName("hello"); return mav; } }
第二种通过ModelMap来实现--不需要视图解析器
ModelMap需要作为处理方法的参数
@RequestMapping("/hello") public String hello(@RequestParam("uname")String name, ModelMap model){ //相当于request.setAttribute("name",name); model.addAttribute("name", name); System.out.println(name); return "index.jsp"; }
ModelAndView和ModelMap的区别:
相同点:都可以将数据封装显示到view层页面中
不同点:ModelAndView可以指定跳转的视图,而ModelMap不能。ModelAndView需要视图解析器,ModelMap不需要配置
以上是关于数据处理的主要内容,如果未能解决你的问题,请参考以下文章
python 用于数据探索的Python代码片段(例如,在数据科学项目中)
在 Python 多处理进程中运行较慢的 OpenCV 代码片段