本文实例讲述了Node.js基于connect和express框架的多页面实现数学运算。分享给大家供大家参考,具体如下:
1、使用connect框架
.use方法用于绑定中间件到connect服务器,它会配置一系列在接到请求时调用的中间件模块,此例中我们要配置的中间件有favicon logger static router
app.get/post/put 写法:app.requestName('path',function(req,res,next){});
app-connect.js
函数类型的参数
//路由器配置函数可以包含不限数量的函数,你可以为自己的应用构造一个处理函数的队列
app.get('/square',htutil.loadParams,require('./square-node').get);
app.get('/factorial',require('./factorial-node').get);
app.get('/fibonacci',require('./fibo2-node').get);
app.get('/mult',require('./mult-node').get);
})).listen(3000);
console.log('listening to http://localhost:3000');
2、使用express框架
Express框架是一个基于connect(一个中间件框架)的web应用框架
Express专注于构建一个应用,包括提供一个模板系统;connect专注于做web服务的基础设施
安装Express和EJS(模块处理系统) npm install express ejs
app-express.js
错误处理函数,显示栈轨迹
//如果要显示用户友好的错误,app.err(function(err,req,next){
// res.send(error page); //or res.render('template');
// });
app.use(express.errorHandler({
dumpExceptions: true,showStack: true
}));
/*
改成下面的话,浏览器会显示一个简单的消息-Internal Server Error内部服务器错误
app.use(express.errorHandler({
dumpExceptions: true
}));
*/
});
//以上配置了必需的中间件,因为这里展示的配置项对应的是模板系统的配置,所有.html文件会由EJS引擎处理
//以下是路由器配置
app.get('/',res){
res.render('home.html',{title: "Math Wizard"});
});
app.get('/mult',res){
if (req.a && req.b) req.result = req.a * req.b;
res.render('mult.html',{title: "Math Wizard",req: req});
});
app.get('/square',res){
if (req.a) req.result = req.a * req.a;
res.render('square.html',req: req});
});
app.get('/fibonacci',res){
if (req.a){
math.fibonacciAsync(Math.floor(req.a),function(val){
req.result = val;
res.render('fibo.html',req: req});
});
}else {
res.render('fibo.html',req: req});
}
});
app.get('/factorial',res){
if (req.a) req.result = math.factorial(req.a);
res.render('factorial.html',req: req});
});
app.get('/404',res){
res.send('NOT FOUND' + req.url);
});
//res.render函数通过一个模板文件渲染数据,EJS只是Express里众多模板引擎中的一个
//配置目的是让EJS能够为views目录下的所有.html文件服务
/*Express里还有其他一些模板引擎
res.render('index.haml',{..data..}); 使用Haml
res.render('index.jade',{..data..}); 使用Jade
res.render('index.ejs',{..data..}); 使用EJS
res.render('index.coffee',{..data..}); 使用CoffeeKup
res.render('index.jqtpl',{..data..}); 使用jQueryTemplates
也可以通过 app.set('view engine','haml');
app.set('view engine','jade'); 方法来改变默认的渲染引擎
layout.html
默认情况下,模板中用于渲染的内容会被命名为body,然后传递到layout模板中,当app-express.js调用
res.render('fibo.html'...)时,它会先用fibo.html渲染对应的页面片段,然后再使用layout模板渲染整个页面
有两种方法覆盖这一默认的行为
1、在Express里创建一个全局的配置,通过这个全局配置来控制layout模板的启用与禁用
app.set('view options',{layout: false(or true)});
2、覆盖layout模板对应的渲染方式或者使用不同的layout模板
res.render('myview.ejs',{layout: false(or true)});
或者res.render('page',{layout: 'mylayout.jade'});
<% code %> Javascript代码
<%= code %> 显示替换过HTML特殊字符的内容
<%- code %> 显示原始HTML内容
*/
app.listen(3000);
console.log('listening to http://localhost:3000');
html页面放在views目录下
layout.html