我在nodejs中遇到问题,看看是否有人可以帮助我。
我有一个page.html,我需要传递一个像
这样的值的参数page.html?s=1
我无法发送它,当我发送它时,我被带到一个空白页面。
server.js如下所示:
var app = require('http');
var fs = require('fs');
var path = require('path');
var url = require('url') ;
var http = app.createServer(function handler(request, response) {
var filePath = '.' + request.url;
if (filePath == './')
filePath = './index.html';
var extname = path.extname(filePath);
var contentType = 'text/html';
switch (extname) {
case '.js':
contentType = 'text/javascript';
break;
case '.css':
contentType = 'text/css';
break;
case '.json':
contentType = 'application/json';
break;
case '.png':
contentType = 'image/png';
break;
case '.jpg':
contentType = 'image/jpg';
break;
case '.wav':
contentType = 'audio/wav';
break;
case '.xml':
contentType = 'text/xml';
break;
}
fs.readFile(filePath, function (error, content) {
if (error) {
if (error.code == 'ENOENT') {
fs.readFile('./404.html', function (error, content) {
response.writeHead(200, {'Content-Type': contentType});
response.end(content, 'utf-8');
});
}
else {
response.writeHead(500);
response.end('Sorry, check with the site admin for error: ' + error.code + ' ..\n');
response.end();
}
}
else {
response.writeHead(200, {'Content-Type': contentType});
response.end(content, 'utf-8');
}
});
}).listen(3100);
console.log('Server started at 3100');
如果您需要更多信息,请与我们联系。
答案 0 :(得分:0)
您所做的事情称为查询字符串,url parameter
将为page.html/:something