成人国产在线小视频_日韩寡妇人妻调教在线播放_色成人www永久在线观看_2018国产精品久久_亚洲欧美高清在线30p_亚洲少妇综合一区_黄色在线播放国产_亚洲另类技巧小说校园_国产主播xx日韩_a级毛片在线免费

資訊專(zhuān)欄INFORMATION COLUMN

mongoose簡(jiǎn)單應(yīng)用

Zachary / 3424人閱讀

摘要:使用可以讓我們更好使用數(shù)據(jù)庫(kù),而不需要寫(xiě)繁瑣的業(yè)務(wù)邏輯。安裝初始化使用使用前,需安裝和,這里不講和的安裝方法。這里建立模式和模型快速入門(mén)在中,所有的數(shù)據(jù)都是一種模式,每個(gè)模式都映射到的集合,并且定義該集合文件結(jié)構(gòu)。可以是字符串或?qū)ο蟆?/p>

mongoose-study

使用mongoose可以讓我們更好使用mongodb數(shù)據(jù)庫(kù),而不需要寫(xiě)繁瑣的業(yè)務(wù)邏輯。

安裝
  

npm install mongoose

初始化使用

使用mongoose前,需安裝node和mongodb,這里不講node和mongodb的安裝方法。

javascript    var mongoose = require("mongoose");
    var Schema = mongoose.Schema;
    var db = mongoose.connection;
    mongoose.connect("mongodb://localhost/animal");
    db.on("error", console.error);
    db.once("open", function() {
       //這里建立模式和模型
    }
快速入門(mén)

在mongoose中,所有的數(shù)據(jù)都是一種模式,每個(gè)模式都映射到mongodb的集合,并且定義該集合文件結(jié)構(gòu)。

javascript    //這里建立一個(gè)動(dòng)物的模式,所有動(dòng)物都擁有這個(gè)模式下的所有屬性
    var animalSchema = new Schema({
        name: String,
        age: Number,
    });

模型是我們從Schema中定義的一種多樣化的構(gòu)造函數(shù),模型的實(shí)例可以使用很多操作,所有文檔的創(chuàng)建和檢索都是由模型來(lái)處理

javascript    var animalMode = db.model("Animal", animalSchema);

模型的實(shí)例實(shí)質(zhì)是文件,而我們可以很輕松創(chuàng)建、修改這種文件

javascript    var cat = new animalMode({
        name: "catName",
        age: "7",    //這里依然使用字符串,mongoose會(huì)自動(dòng)轉(zhuǎn)換類(lèi)型
      });

    cat.save(function(err, thor) {
        if (err) return console.log(err);
        console.log(thor);
    });
    //或者可以使用create
    //cat.create(function(err, thor) {
    //    if (err) return console.log(err);
    //    console.log(thor);
    //});

    //執(zhí)行查找
    animalMode.find(function(err, people){
        if(err) console.log(err);
        console.log(people);
    });
    //查找符合條件數(shù)據(jù)
    animalMode.findOne({title: "catName"}, function(err, cat){
        if(err) console.log(err);
        console.log(cat);
    });
Schema

數(shù)據(jù)類(lèi)型

這是Schema中所有的數(shù)據(jù)類(lèi)型,包括mongoose自定的數(shù)據(jù)類(lèi)型

String

Number

Date

Buffer

Boolean

Mixed

ObjectId

Array

每種數(shù)據(jù)類(lèi)型的使用

javascript    var animalMode = mongoose.model("Animal", schema);

    var cat = new animalMode;
    cat.name = "Statue of Liberty"              //String
    cat.age = "7";                              //Number
    cat.updated = new Date;                     //Date
    cat.binary = new Buffer(0);                 //Buffer
    cat.living = false;                         //Boolean
    cat.mixed = { any: { thing: "i want" } };   //Mixed              
    cat._someId = new mongoose.Types.ObjectId;  //ObjectId
    cat.ofString.push("strings!");              //Array

其中Mixed是mongoose自定義的一種混合類(lèi)型,因?yàn)镸ixed沒(méi)有定義具體內(nèi)容,可以用{}來(lái)使用,以下2種定義形式等價(jià)。

javascript    var animalSchema = new Schema({any: {}});
    var animalSchema = new Schema({any: {Schema.Types.Mixed}});

自定義方法

可以為Schema綁定方法

javascript    var animalSchema = new Schema({
        name: String,
        age: Number,
    });

    animalSchema.methods.findSimilarTypes = function (cb) {
        return this.model("Animal").find({ name: this.name }, cb);
    }

    var animalMode = db.model("Animal", animalSchema);

    cat.findSimilarTypes(function(err, cat){
        if(err) console.log(err);
        console.log(cat);
    });

也可以為Schema添加靜態(tài)方法

javascript    animalSchema.statics.findByName = function (name, cb) {
        return this.find({ name: new RegExp(name, "i") }, cb);
    }
    var animalMode = db.model("Animal", animalSchema);

    animalMode.findByName("catName", function (err, animals) {
        console.log(animals);
    });

索引

我們可以為mongodb數(shù)據(jù)建立索引,mongodb支持二級(jí)索引,為了提高數(shù)據(jù)查找和定位,建立復(fù)合索引是必要的

javascript    var animalSchema = new Schema({
      name: String,
      age: Number,
      tags: { age: [String], index: true } // field level
    });

    animalSchema.index({ name: 1, age: -1 }); // schema level

但是這種索引的建立可能導(dǎo)致顯著的性能影響,建議在生產(chǎn)下停止,將設(shè)置模式下的自動(dòng)索引設(shè)置為false禁止

javascript    animalSchema.set("autoIndex", false);
    // or
    new Schema({..}, { autoIndex: false });
Model C
javascript    cat.save(function(err, thor) {
        if (err) return console.log(err);
        console.log(thor);
    });
    //或者可以使用create
    cat.create(function(err, thor) {
        if (err) return console.log(err);
        console.log(thor);
    });
R
javascript//find
animalMode.find(function(err, cat){
    if (err) console.log(err);
    console.log(cat);
})

//findOne
animalMode.findOne({name: "catName"}, function(err, cat){
    if (err) console.log(err);
    console.log(cat);
})

//findByID
//與 findOne 相同,但它接收文檔的 _id 作為參數(shù),返回單個(gè)文檔。_id //可以是字符串或 ObjectId 對(duì)象。
animalMode.findById(id, function(err, adventure){
    if (err) consoel.log(err);
    console.log(adventure);
});

//where
//查詢(xún)數(shù)據(jù)類(lèi)型是字符串時(shí),可支持正則
animalMode.where("age", "2").exec(function(err, cat){
    if (err) console.log(err);
    console.log(cat);
});

animalMode
    .where("age").gte(1).lte(10)
    .where("name", "catName")
    .exec(function(err, cat){
      if (err) console.log(err);
      console.log(cat);
    });

U

官方文檔提供的更新函數(shù)Model.update

Model.update(conditions, doc, [options], [callback])

conditions 更新條件

doc 更新內(nèi)容

option 更新選項(xiàng)

safe (boolean) 安全模式,默認(rèn)選項(xiàng),值為true

upsert (boolean) 條件不匹配時(shí)是否創(chuàng)建新文檔,默認(rèn)值為false

multi (boolean) 是否更新多個(gè)文件,默認(rèn)值為false

strict (boolean) 嚴(yán)格模式,只更新一條數(shù)據(jù)

overwrite (boolean) 覆蓋數(shù)據(jù),默認(rèn)為false

callback

err 更新數(shù)據(jù)出錯(cuò)時(shí)返回值

numberAffected (筆者暫時(shí)不清楚)

rawResponse 受影響的行數(shù)

javascriptanimalMode.update({name: "catName"}, {age: "6"}, {multi : true}, function(err, numberAffected, raw){
    if (err) return console.log(err);
    console.log("The number of updated documents was %d", numberAffected);
    console.log("The raw response from Mongo was ", raw);
});

D
javascriptanimalMode.remove({age: 6}, function(err){
    if (err) console.log(err);
})
其它
javascript//返回文檔數(shù)
animalMode.count({age: 2}, function(err, cat){
    if (err) console.log(err);
    console.log(cat);
})
資源推薦

mongoosejs.com
https://github.com/jayZOU/mongoose-study

  

持續(xù)更新中...

由于筆者也是初學(xué)者,有地方講的不對(duì),
歡迎給我郵件([email protected])謝謝^-^

文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。

轉(zhuǎn)載請(qǐng)注明本文地址:http://systransis.cn/yun/85808.html

相關(guān)文章

  • 用一個(gè)登錄demo貫穿vue+node+mongoDB前后端分離的開(kāi)發(fā)方式

    摘要:一般如果不成功,可以試著看看端口號(hào)是否被占用等問(wèn)題。如下數(shù)據(jù)庫(kù)地址用戶(hù)名密碼地址端口號(hào)數(shù)據(jù)庫(kù)連接數(shù)據(jù)庫(kù)實(shí)例化連接對(duì)象連接錯(cuò)誤連接成功然后再去下創(chuàng)建創(chuàng)建在下創(chuàng)建創(chuàng)建,這個(gè)地方的對(duì)應(yīng)數(shù)據(jù)庫(kù)中的最后,我們回到路由的中,使用引入模型。 這篇文章記錄一下如何使用vue+node+mongoDB開(kāi)發(fā)出一個(gè)登錄的小demo。從而打通前端到后端一整條技能樹(shù)。文章會(huì)先從介紹后端創(chuàng)建API接口連接mong...

    MiracleWong 評(píng)論0 收藏0
  • mongoose簡(jiǎn)單應(yīng)用

    摘要:使用可以讓我們更好使用數(shù)據(jù)庫(kù),而不需要寫(xiě)繁瑣的業(yè)務(wù)邏輯。安裝初始化使用使用前,需安裝和,這里不講和的安裝方法。這里建立模式和模型快速入門(mén)在中,所有的數(shù)據(jù)都是一種模式,每個(gè)模式都映射到的集合,并且定義該集合文件結(jié)構(gòu)。可以是字符串或?qū)ο蟆? mongoose-study 使用mongoose可以讓我們更好使用mongodb數(shù)據(jù)庫(kù),而不需要寫(xiě)繁瑣的業(yè)務(wù)邏輯。 安裝 npm inst...

    callmewhy 評(píng)論0 收藏0
  • 【實(shí)戰(zhàn)】用 express+MongoDB 搭建一個(gè)完整的前端項(xiàng)目

    摘要:前言要做一個(gè)全沾的工程師,對(duì)于后端和數(shù)據(jù)庫(kù)來(lái)說(shuō),即使不認(rèn)識(shí)也要見(jiàn)個(gè)面的?;玖私獾母拍罹秃?,主要是安裝上數(shù)據(jù)庫(kù),并進(jìn)行簡(jiǎn)單的增刪操作。 前言:要做一個(gè)全沾的工程師,對(duì)于后端和數(shù)據(jù)庫(kù)來(lái)說(shuō),即使不認(rèn)識(shí)也要見(jiàn)個(gè)面的。本文給的例子很簡(jiǎn)單,也貼出來(lái)源碼,只要一步步下來(lái),就可以跑起來(lái)啦~~~ 思考一個(gè)需求:做一個(gè)登錄頁(yè)面,自己搭建服務(wù)和數(shù)據(jù)庫(kù),將用戶(hù)輸入的登錄信息保存到數(shù)據(jù)庫(kù)如何完成呢:首先選擇...

    Steve_Wang_ 評(píng)論0 收藏0
  • Express 實(shí)戰(zhàn)(八):利用 MongoDB 進(jìn)行數(shù)據(jù)持久化

    摘要:在使用過(guò)程中我們可以通過(guò)增加哈希次數(shù)來(lái)提高數(shù)據(jù)的安全性。當(dāng)然,對(duì)密碼的哈希操作應(yīng)該在保存數(shù)據(jù)之前。 showImg(https://segmentfault.com/img/remote/1460000010821081); 毫無(wú)疑問(wèn),幾乎所有的應(yīng)用都會(huì)涉及到數(shù)據(jù)存儲(chǔ)。但是 Express 框架本身只能通過(guò)程序變量來(lái)保存數(shù)據(jù),它并不提供數(shù)據(jù)持久化功能。而僅僅通過(guò)內(nèi)存來(lái)保存數(shù)據(jù)是無(wú)法應(yīng)對(duì)...

    yanbingyun1990 評(píng)論0 收藏0

發(fā)表評(píng)論

0條評(píng)論

最新活動(dòng)
閱讀需要支付1元查看
<