springboot中request.getParameterMap的说明
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot中request.getParameterMap的说明相关的知识,希望对你有一定的参考价值。
参考技术A Returns a java.util.Map of the parameters of this request. Request parameters are extra information sent with the request. For HTTP servlets, parameters are contained in the query string or posted form data.Returns:
an immutable java.util.Map containing parameter names as keys and parameter values as map values. The keys in the parameter map are of type String. The values in the parameter map are of type String array.
查阅文档可知,此方法仅能获取url里面的参数以及post方式的form表单数据。
以上是关于springboot中request.getParameterMap的说明的主要内容,如果未能解决你的问题,请参考以下文章