在jsp中如何用request中获取后台传来的数据?

2024-11-08 13:53:40
推荐回答(1个)
回答1:

  • 用request.getAttribute获取,而不是getParameter。

  • HttpServletRequest接口有setAttribute方法,而没有setParameter方法

  • 当两个Web组件之间为链接关系时,被链接的组件通过getParameter方法来获得请求参数

  • String datetime1 = (String)request.getAttribute("datetime");

  • 通常情况下,你每次提交(点击搜索)的时候,

  • 过程如下: 转到后台,根据你的输入生成新的sql语句转到后台

  • 数据库查询出新的表格内容

  • 转到前台展示整个页面

  • 到了展示的这一步,会生成新的页面,虽然是跟上一个一样的页面,其实他的内容都是重新生成显示的.