Node.js中Server对象中的可触发事件中,当新连接创建后会被触发的是()
A. listening
B. connection
C. close
D. error
urlString = 'http://localhost:8888/start?foo=bar&hello=world';console.log(url.parse(urlString, true).query);返回的是()。
A. /start?foo=bar&hello=world
B. foo=bar
C. { foo: 'bar', hello: 'world' }
D. ?foo=bar&hello=world
关于node.js的原生获得post数据的方式,正确的是()。
A. 通过req.body对象获得。
B. 通过解析req.url获得
C. 通过req.on监听data事件来获取
D. 必须在表单上添加enctype属性为multipart/form-data才能获得
Content-Type(内容类型),决定浏览器将以html网页形式、utf8编码读取这个文件,应该使用值()
A. 'text/html'
B. 'text/plain'
C. 'image/jpeg'
D. 'text/css'