GET ��ʽ�� POST ��ʽ�����㣺 Content-Type: application/x-www-form-urlencoded
| 135 | // GET ��ʽ�� POST ��ʽ�����㣺 |
| 136 | // Content-Type: application/x-www-form-urlencoded |
| 137 | bool doParams(HttpServletRequest& req, HttpServletResponse& res) |
| 138 | { |
| 139 | param1_ = req.getParameter("name1"); |
| 140 | param2_ = req.getParameter("name2"); |
| 141 | param3_ = req.getParameter("name2"); |
| 142 | return doResponse(req, res); |
| 143 | } |
| 144 | |
| 145 | // POST ��ʽ�����㣺 |
| 146 | // Content-Type: multipart/form-data; boundary=xxx |
nothing calls this directly
no test coverage detected