Nodejs処理異常動作例
3197 ワード
本論文の実例は、Nodejs処理の異常動作について述べる.皆さんに参考にしてあげます.具体的には以下の通りです.
Exception.js
Exception.js
module.exports = {
expfun: function(flag) {
if(flag == 0) {
throw ' error';
}
return "success";
}
}
optfile.js
//-------------optfile.js-------------------------
var fs = require('fs');
module.exports = {
readfile: function (path, recall) { //
fs.readFile(path, function (err, data) {
if (err) {
console.log(" error:" + err);
recall(" , error:" + err);//
} else {
//console.log(data.toString());
recall(data);
}
});
console.log("=== ===");
},
readImg: function (path, res) {
fs.readFile(path, 'binary', function (err, filedata) {
if (err) {
console.log(err);
return;
} else {
console.log(" ");
res.write(filedata, 'binary');
res.end();
}
});
}
}
router.js
var optfile = require('../model/optfile2.js');
function getRecall(req, res) {
res.writeHead(200, {
'Content-Type': 'text/html; charset=utf-8'
});
function recall(data) {
res.write(data);
res.end(''); // http
}
return recall;
}
module.exports = {
login: function (req, res) {
recall = getRecall(req, res);
optfile.readfile('./view/login.html', recall);
},
showimg: function (req, res) {
res.writeHead(200, {
'Content-Type': 'image/jpeg'
});
optfile.readImg("./view/pig.png", res);
}
}
//-------------n9_exception.js---------------
/*
&&
*/
var http = require('http');
var url = require('url');
var router = require('./model/router');
var exception = require('./model/Exception');
http.createServer(function (request, response) {
if (request.url !== "/favicon.ico") { // 2
pathname = url.parse(request.url).pathname;
pathname = pathname.replace(/\//, ''); // /
try {
router[pathname](request, response);
// data = exception.expfun(0);
// response.write(data);
// response.end('');
} catch (err) {
console.log(' =' + err);
response.writeHead(200, {
'Content-Type': 'text/html; charset=utf-8'
});
response.write(err.toString());
response.end('');
}
console.log("server ");
}
}).listen(8000);
console.log('Server running at http://127.0.0.1:8000/');
ここで述べたように、皆さんのnodejsプログラムの設計に役に立ちます.