使用node.js 制作网站前台后台
node.js 能做什么?我至今也不清楚,他在哪方面应用比较广泛,我没有机会接触到那样的项目。只是因为喜欢,业余时间做了一个网站和后台。深刻领悟到一个道理那就是如果你喜欢一项技术可以玩玩,但是如果用到项目中就必须花些时间去解决很多问题。
使用到的技术:
express+jade
sqlite+sequelize
redis
1.关于jade
支持include。 比如:include./includes/header header是一个局部视图,类似asp.net 用户控件。
支持extends。比如:extends../layout 使用母版页layout。
for循环也是如此简单。
eachiteminuserList (userList服务器传给前端的变量) tr td#{item.username} td#{item.telephone} td#{item.email}
比较喜欢append:
extends../admin_layout appendhead link(rel='stylesheet',href='/stylesheets/font-awesome.css') script(src='/javascripts/bootstrap.js') script(src='/javascripts/bootstrap-wysiwyg.js') script(src='/javascripts/jquery.hotkeys.js') blockcontent
append会把脚步和样式全部放在母版页面head后面。
2.sequelize 实现ORM的框架。支持sqlitemysqlmongodb
定义模型(文章):
varArticle=sequelize.define('Article',{ title:{ type:Sequelize.STRING, validate:{} }, content:{type:Sequelize.STRING,validate:{}}, icon:{type:Sequelize.STRING,validate:{}}, iconname:{type:Sequelize.STRING}, sequencing:{type:Sequelize.STRING,validate:{}} },{ classMethods:{ //文章分类 getCountAll:function(objFun){ }//endgetCountAll }//endclassMethods }); Article.belongsTo(Category);
Article.belongsTo(Category); 每一篇文章都有一个分类。
我把分页相关方法写到了初始化sequelize时候。这样每个模型定义时候,都会有这个方法(pageOffset、pageLimit)。
varsequelize=newSequelize('database','username','password',{ //sqlite!now! dialect:'sqlite', //thestorageengineforsqlite //-default':memory:' storage:config.sqlitePath, define:{ classMethods:{ pageOffset:function(pageNum){ if(isNaN(pageNum)||pageNum<1){ pageNum=1; } return(pageNum-1)*this.pageLimit(); }, pageLimit:function(){ return10;//每页显示10条 }, totalPages:function(totalNum){ vartotal=parseInt((totalNum+this.pageLimit()-1)/this.pageLimit()), arrayTotalPages=[]; for(vari=1;i<=total;i++){ arrayTotalPages.push(i); } returnarrayTotalPages; } }, instanceMethods:{ } } });
使用:
Article.findAndCountAll({include:[Category],offset:Article.pageOffset(req.query.pageNum),limit:Article.pageLimit()}).success(function(row){ res.render('article_list',{ title:'文章管理', articleList:row.rows, pages:{ totalPages:Article.totalPages(row.count), currentPage:req.query.pageNum, router:'article' } }); });
保存模型:
exports.add=function(req,res){ varform=newformidable.IncomingForm(); form.uploadDir=path.join(__dirname,'../files'); form.keepExtensions=true; form.parse(req,function(err,fields,files){ var//iconPath=files.icon.path, //index=iconPath.lastIndexOf('/')<=0?iconPath.lastIndexOf('\\'):iconPath.lastIndexOf('/'), icon=path.basename(files.icon.path),//iconPath.substr(index+1,iconPath.length-index), iconname=files.icon.name; vartitle=fields.title; id=fields.articleId; title=fields.title, content=fields.content, mincontent=fields.mincontent, sequencing=fields.sequencing==0?0:1, category=fields.category; Article.sync(); //如果不存在就创建表。 Category.find(category).success(function(c){ vararticle=Article.build({ title:title, content:content, mincontent:mincontent, icon:icon, iconname:iconname, sequencing:sequencing }); article.save() .success(function(a){ a.setCategory(c); returnres.redirect('/admin/article'); }); });//endcategory }); }
path.basename:
//iconPath=files.icon.path, //index=iconPath.lastIndexOf('/')<=0?iconPath.lastIndexOf('\\'):iconPath.lastIndexOf('/'), icon=<strong>path.basename</strong>(files.icon.path),//iconPath.substr(index+1,iconPath.length-index),
获取文件名,比如:/a/b/aa.txt =>aa.txt. 最初时候我使用截取字符串,也能实现,但是操作系统不一样的话就会有问题。mac使用'/'.window下面是'\\',我也是部署完成之后才发现的问题。 后来发现path.basename 直接替换(文档阅读的少,就吃亏啊)。对node.js的好感在加1分。:)
3.redis缓存经常查询,而且很少变化的数据。
getCountAll:function(objFun){ redis.get('articles_getCountAll',function(err,reply){ if(err){ console.log(err); return; } if(reply===null){ db.all('SELECTcount(articles.CategoryId)ascount,categories.name,categories.idFROMarticlesleftjoincategoriesonarticles.categoryID=categories.idgroupbyarticles.CategoryId',function(err,row){ redis.set('articles_getCountAll',JSON.stringify(row)); objFun(row); }); }else{ objFun(reply); } });
这个方法定义在了model层。因为是express,所以尽可能的用mvc方式开发。其实是route实现了controller层功能(route文件夹,应该命名为为controller)。