乐观小蘑菇

文章
4
资源
0
加入时间
2年10月17天

request.getAttribute()和 request.getParameter()的区别

request.getAttribute()和 request.getParameter()有何区别?a、request.getParameter()取得是通过容器的实现来取得通过类似post,get等方式传入的数据。b、getAttribute是返回对象,getParameter返回字符串。c、getAttribute()一向是和setAttribute()一起使用的,只有先用setAttribute()设置之后,才能够通过getAttribute()来获得值,它们传递的是Object类型的数