getAttribute表示从request范围取得设置的属性,那么我们必须先setAttribute设置属性,才能获得属性,设置与取得的为string类型
HttpServletRequest类既有getAttribute()方法也有getParameter方法,这两个方法有什么区别呢?
1、getAttribute是返回对象,getParameter返回字符串。
2、request.getAttribute()方法返回request范围内存在的对象,而request.getParameter()方法是获取http提交过来的数据。例如www.baidu.com/usernmae=zhangsan,request.getParameter()可获得username的值,而request.getAttribute()却不能,只能由request.setAttribute()设置文章来源:https://www.toymoban.com/news/detail-684029.html
3、与getAttribute()方法对应的有setAttribute()方法,但是getParameter()没有与之相对的setParameter()。
原文链接:https://blog.csdn.net/LChloe/article/details/80701449文章来源地址https://www.toymoban.com/news/detail-684029.html
到了这里,关于getAttribute与getParameter的区别的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!