I'm learning Node.js.
I have this in my server:
var http = require("http");
var url = require("url");
http.createServer(function(request, response){
response.writeHead(200, {"Content-Type":"text/plain"});
var params = url.parse(request.url,true).query;
console.log(params);
var a = params.number1;
var b = params.number2;
var numA = new Number(a);
var numB = new Number(b);
var numOutput = new Number(numA + numB).toFixed(0);
response.write(numOutput);
response.end();
}).listen(10000);
An URL like this: localhost:10000/?number1=50000&number2=1
echoes 50001 on my browser, so it works.
Without using Express, I need to send those 2 params through a form using HTML.
How can this be achieved?
The simple answer is
<form method="get">
. The browser will turn the form data into query string parameters that you're already handling.If you need to
POST
, HTML forms are posted as the request entity-body. In node, aClientRequest
(therequest
variable in your example) emits adata
event every time a chunk of the body arrives at the server. You will not receive the entire body at once. You must buffer until you've received the entire body, then parse the data.This is hard to get right because of things like chunked vs normal
Transfer-Encoding
and the different ways browsers can submit form data. I'd just use formidable (which is what Express uses behind the scenes anyway), or at least study how it handles form posts if you absolutely must implement your own. (And really, do this only for educational purposes – I can't stress enough that you should use formidable for anything that might end up in production.)I solved my problem this way:
sum.js:
Index.html:
Don't know if it's the right way of doing it, but it solved my needs.
Your jade form (assuming you're using express) should look like this:
Then to pass the newly submitted datapoint
whateverSearch
you usereq.body
to find it (see below). Here, I've taken the data point and logged it to the console, and then submitted it to the DOM, as well as the title for the page.