request.getParameter(\"name\")获取参数为null和\"\"空字符串的区别
1.获取到的值为” “空字符串
当url里有name属性,但是没有值的时候后台用request.getParameter(“name”)获取的是空字符串””
2.获取到的值为null
当url里没有name属性,request.getParameter(“name”)获取的值是null
参考:http://blog.csdn.net/caishancai/article/details/55104053 谢谢~
版权声明:本文为landauni原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。