el表达式中的${param}用法

el表达式中的${param}?

1.

2.

${param.name} 等价于 request.getParamter("name"),这两种方法一般用于服务器从页面或者客户端获取的内容。

${requestScope.name} 等价于 request.getAttribute("name"),一般是从服务器传递结果到页面,在页面中取出服务器保存的值。

3.

4.

原文地址:https://www.cnblogs.com/ZXF6/p/13225095.html