【http】
3042 단어 http
var qs = require('querystring')
require('http').createServer(function(req, res) {
//res.writeHead(200, {'Content-Type': 'image/png'})
/*var stream = require('fs').createReadStream('image.png')
stream.on('data', function(data) {
res.write(data)
})
stream.on('end', function() {
res.end()
})*/
//require('fs').createReadStream('image.png').pipe(res)
if ('/' == req.url) {
res.writeHead(200, {'Content-Type': 'text/html'})
res.end([
'<form method="POST" action="/url">',
'<input type="text" name="name">',
'<button>Submit</button>',
'</form>'
].join(''))
} else if ('/url' == req.url && 'POST' == req.method) {
var body = ''
req.on('data', function(data) {
body += data
})
req.on('end', function() {
res.writeHead(200, {'Content-Type': 'text/html'})
res.end('Content-Type: ' + req.headers['content-type'] + 'Data:' + qs.parse(body).name)
})
} else {
res.writeHead(200, {'Content-Type': 'text/html'})
res.end('Not Found')
}
}).listen(3000)
console.log(qs.parse('name=Guillermo'))
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
빠른 팁: SingleStoreDB의 데이터 API 사용SingleStoreDB는 HTTP 연결을 통해 SQL 문을 실행하는 데 사용할 수 있는 을 제공합니다. 이 짧은 문서에서는 이 데이터 API를 사용하는 방법에 대한 예를 보여줍니다. A는 무료 SingleStore...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.