GET ��ʽ�� POST ��ʽ�����㣺 Content-Type: application/x-www-form-urlencoded
| 143 | // GET ��ʽ�� POST ��ʽ�����㣺 |
| 144 | // Content-Type: application/x-www-form-urlencoded |
| 145 | bool doParams(acl::HttpServletRequest& req, acl::HttpServletResponse& res) |
| 146 | { |
| 147 | param1_ = req.getParameter("name1"); |
| 148 | param2_ = req.getParameter("name2"); |
| 149 | param3_ = req.getParameter("name3"); |
| 150 | return doResponse(req, res); |
| 151 | } |
| 152 | |
| 153 | // POST ��ʽ�����㣺 |
| 154 | // Content-Type: multipart/form-data; boundary=xxx |
nothing calls this directly
no test coverage detected