A. /start?foo=bar&hello=world B. foo=bar C. /start D. oo=bar&hello=world
A. req.url B. req.string C. req.query D. req.body
A. action B. href C. method D. Enctype
A. listening B. connection C. close D. error
A. /start?foo=bar&hello=world B. foo=bar C. { foo: 'bar', hello: 'world' } D. ?foo=bar&hello=world
A. 通过req.body对象获得。 B. 通过解析req.url获得 C. 通过req.on监听data事件来获取 D. 必须在表单上添加enctype属性为multipart/form-data才能获得
A. 'text/html' B. 'text/plain' C. 'image/jpeg' D. 'text/css'
A. req.method B. req.httpVersion C. req.headers D. req.url
A. res.writeHead() B. res.end() C. res.write() D. res.on()
A. response B. request C. connection D. close