node.js 做網站和后台


node.js  能做什么?我至今也不清楚,他在哪方面應用比較廣泛,我沒有機會接觸到那樣的項目。只是因為喜歡,業余時間做了一個網站和后台。深刻領悟到一個道理那就是如果你喜歡一項技術可以玩玩,但是如果用到項目中就必須花些時間去解決很多問題。

使用到的技術:

express + jade

sqlite + sequelize   

redis

 

1. 關於jade

    支持include。  比如: include ./includes/header  header 是一個局部視圖,類似asp.net  用戶控件。

    支持extends。 比如: extends ../layout   使用母版頁layout。

    for循環也是如此簡單。    

each item in userList  (userList 服務器傳給前端的變量)
tr
  td #{item.username}
  td #{item.telephone}
  td #{item.email}

  比較喜歡append:

extends ../admin_layout

append head
  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')
block content

     append 會把腳步和樣式全部放在 母版頁面head后面。

 

2.sequelize  實現ORM的框架。 支持sqlite mysql mongodb

   定義模型(文章):

 1 var Article = sequelize.define('Article',{
 2   title:{
 3     type:Sequelize.STRING,
 4     validate:{}
 5   },
 6   content:{type:Sequelize.STRING,validate:{}},
 7   icon:{type:Sequelize.STRING,validate:{}},
 8   iconname:{type:Sequelize.STRING},
 9   sequencing:{type:Sequelize.STRING,validate:{}}
10 },{
11 
12 
13   classMethods:{
14 
15     //文章分類
16     getCountAll:function(objFun){
17 
18     }//end getCountAll
19   
20   }//end classMethods
21 
22 });
23 
24 Article.belongsTo(Category);
View Code

 

 Article.belongsTo(Category);  每一篇文章都有一個分類。

 

我把分頁相關方法寫到了初始化sequelize時候。這樣每個模型定義時候,都會有這個方法(pageOffset、pageLimit)。

var sequelize = new Sequelize('database', 'username', 'password', {
  // sqlite! now!
  dialect: 'sqlite',
 
  // the storage engine for sqlite
  // - default ':memory:'
  storage: config.sqlitePath,

  define:{
    classMethods:{
      pageOffset:function(pageNum){

        if(isNaN(pageNum) || pageNum < 1){
          pageNum = 1;  
        }
        return (pageNum - 1) * this.pageLimit();
      },
      pageLimit:function(){
        return 10; //每頁顯示10條
      },
      totalPages:function(totalNum){

        var total =parseInt((totalNum + this.pageLimit() - 1) / this.pageLimit()),
            arrayTotalPages = [];

        for(var i=1; i<= total; i++){
          arrayTotalPages.push(i);
        }

        return arrayTotalPages;
      }
    },
    instanceMethods:{
      
    }
  }

});

 

使用:

 1 Article.findAndCountAll({include:[Category],offset:Article.pageOffset(req.query.pageNum), limit:Article.pageLimit()}).success(function(row){
 2     
 3     res.render('article_list', { 
 4       title: '文章管理', 
 5       articleList : row.rows,  
 6       pages:{
 7         totalPages:Article.totalPages(row.count),
 8         currentPage:req.query.pageNum,
 9         router:'article'
10       }
11     });
12 
13   });
View Code

 

保存模型:

 1 exports.add = function(req, res) {
 2   
 3 
 4   var form = new formidable.IncomingForm();
 5   form.uploadDir = path.join(__dirname, '../files');
 6   form.keepExtensions = true;
 7   form.parse(req, function(err, fields,files){
 8 
 9     var //iconPath = files.icon.path,
10         //index = iconPath.lastIndexOf('/') <= 0 ? iconPath.lastIndexOf('\\') : iconPath.lastIndexOf('/') ,
11         icon = path.basename(files.icon.path), // iconPath.substr(index + 1,iconPath.length - index),
12         iconname = files.icon.name;
13 
14     var title = fields.title;
15         id = fields.articleId;
16         title = fields.title,
17         content = fields.content,
18         mincontent = fields.mincontent,
19         sequencing=fields.sequencing == 0 ? 0 : 1,
20         category = fields.category;
21 
22        Article.sync();  //如果不存在就創建表。
23 
24       Category.find(category).success(function(c){
25 
26         var article = Article.build({
27           title : title, 
28           content:content,
29           mincontent:mincontent,
30           icon:icon,
31           iconname:iconname,
32           sequencing:sequencing
33         });
34 
35         article.save()
36         .success(function(a){
37 
38           a.setCategory(c);
39           
40           return res.redirect('/admin/article');
41         });
42 
43       }); //end category
44 
45   });
46 
47 }
View Code

 

path.basename: 

//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),

獲取文件名,比如:/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('SELECT count(articles.CategoryId) as count,categories.name,categories.id FROM articles left join categories on articles.categoryID = categories.id group by articles.CategoryId ', function(err,row){

            redis.set('articles_getCountAll',JSON.stringify(row));

            objFun(row);
          });

        }else{
          
          objFun(reply);
        }

      });

  

    這個方法定義在了 model層。 因為是express,所以盡可能的 用mvc方式開發。 其實是route實現了controller層功能(route文件夾,應該命名為為controller)。

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM