从零开始学习Node.js系列教程之基于connect和express框架的多页面实现数学运算示例
程序员文章站
2022-11-14 16:43:18
本文实例讲述了node.js基于connect和express框架的多页面实现数学运算。分享给大家供大家参考,具体如下:
1、使用connect框架
.use方法用于绑...
本文实例讲述了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
var connect = require('connect'); //npm install connect connect.createserver() .use(connect.favicon()) .use(conect.logger()) .use('/filez', connect.static(__dirname + '/filez')) .use(connect.router(function(app){ app.get('/', require('./home-node').get); //一个url字符串和两个函数类型的参数 //路由器配置函数可以包含不限数量的函数,你可以为自己的应用构造一个处理函数的队列 app.get('/square', htutil.loadparams, require('./square-node').get); app.get('/factorial', htutil.loadparams, require('./factorial-node').get); app.get('/fibonacci', htutil.loadparams, require('./fibo2-node').get); app.get('/mult', htutil.loadparams, 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
var htutil = require('./htutil'); var math = require('./math'); var express = require('express'); //var app = express.createserver(express.logger()); //express 2.x var app = express(); //express 3.x //可选,因为express下默认为cwd/views app.set('views', __dirname + '/views'); app.engine('.html', require('ejs').__express); app.set('view engine', 'ejs'); app.configure(function(){ app.use(app.router); app.use(express.static(__dirname + '/filez')); //默认的错误处理函数,显示栈轨迹 //如果要显示用户友好的错误,app.err(function(err, req, res, 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('/', function(req, res){ res.render('home.html', {title: "math wizard"}); }); app.get('/mult', htutil.loadparams, function(req, res){ if (req.a && req.b) req.result = req.a * req.b; res.render('mult.html', {title: "math wizard", req: req}); }); app.get('/square', htutil.loadparams, function(req, res){ if (req.a) req.result = req.a * req.a; res.render('square.html', {title: "math wizard", req: req}); }); app.get('/fibonacci', htutil.loadparams, function(req, res){ if (req.a){ math.fibonacciasync(math.floor(req.a), function(val){ req.result = val; res.render('fibo.html', {title: "math wizard", req: req}); }); }else { res.render('fibo.html', {title: "math wizard", req: req}); } }); app.get('/factorial', htutil.loadparams, function(req, res){ if (req.a) req.result = math.factorial(req.a); res.render('factorial.html', {title: "math wizard", req: req}); }); app.get('/404', function(req, 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
<!doctype html> <html> <head> <title></title> </head> <body> <h1><%=title%></h1> <table> <tr> <td> <div class="navbar"> <p><a href="/" rel="external nofollow" >home</a></p> <p><a href="/mult" rel="external nofollow" >multiplication</a></p> <p><a href="/square" rel="external nofollow" >square</a></p> <p><a href="/factorial" rel="external nofollow" >factorial</a></p> <p><a href="/fibonacci" rel="external nofollow" >fibonacci</a></p> </div> </td> <td></td> </tr> </table> </body> </html>
home.html
<% include layout.html %> <p>math wizard</p>
mult.html
<% include layout.html %> <% if (req.a && req.b){ %> <p class="result"> <%=req.a%> * <%=req.b%> = <%=req.result%> </p> <% } %> <p>enter numbers to multiply</p> <form name="mult" action="/mult" method="get"> a: <input type="text" name="a" /><br/> b: <input type="text" name="b" /> <input type="submit" name="submit" /> </form>
还有其他一些页面就不一一列出来了,都大同小异
希望本文所述对大家nodejs程序设计有所帮助。
上一篇: NumPy 如何生成多维数组的方法