mongodb 常用查詢用戶

来源:https://www.cnblogs.com/no-nick/archive/2020/06/06/13054533.html
-Advertisement-
Play Games

一、查詢 find方法 db.collection_name.find(); 查詢所有的結果: select * from users; db.users.find(); 指定返回那些列(鍵): select name, skills from users; db.users.find({}, {' ...


一、查詢

find方法

 

db.collection_name.find();

 

查詢所有的結果:

 

select * from users;

 

db.users.find();

 

指定返回那些列(鍵):

 

select name, skills from users;

 

db.users.find({}, {'name' : 1, 'skills' : 1});

 

補充說明: 第一個{} 放where條件 第二個{} 指定那些列顯示和不顯示 (0表示不顯示 1表示顯示)

 

where條件:

 

1.簡單的等於:

 

select name, age, skills from users where name = 'hurry';

 

db.users.find({'name' : 'hurry'},{'name' : 1, 'age' : 1, 'skills' : 1});

 

2.使用and

 

select name, age, skills from users where name = 'hurry' and age = 18;

 

db.users.find({'name' : 'hurry', 'age' : 18},{'name' : 1, 'age' : 1, 'skills' : 1});

 

3.使用or

 

select name, age, skills from users where name = 'hurry' or age = 18;

 

db.users.find({ '$or' : [{'name' : 'hurry'}, {'age' : 18}] },{'name' : 1, 'age' : 1, 'skills' : 1});

 

4.<, <=, >, >= ($lt, $lte, $gt, $gte )

 

select * from users where age >= 20 and age <= 30;

 

db.users.find({'age' : {'$gte' : 20, '$lte' : 30}});

 

5.使用in, not in ($in, $nin)

 

select * from users where age in (10, 22, 26);

 

db.users.find({'age' : {'$in' : [10, 22, 26]}});

 

6.匹配null

 

select * from users where age is null;

 

db.users.find({'age' : null);

 

7.like (mongoDB 支持正則表達式)

 

select * from users where name like "%hurry%";

 

db.users.find({name:/hurry/}); 

 

select * from users where name like "hurry%";

 

db.users.find({name:/^hurry/}); 

 

8.使用distinct

 

select distinct (name) from users;

 

db.users.distinct('name');

 

9.使用count

 

select count(*) from users;

 

db.users.count();

 

 

10.數組查詢 (mongoDB自己特有的)

 

如果skills是 ['java','python']

 

db.users.find({'skills' : 'java'}); 該語句可以匹配成功

 

$all

 

db.users.find({'skills' : {'$all' : ['java','python']}}) skills中必須同時包含java 和 python 

 

$size

 

db.users.find({'skills' : {'$size' : 2}}) 遺憾的是$size不能與$lt等組合使用

 

$slice

 

db.users.find({'skills' : {'$slice : [1,1]}})

 

兩個參數分別是偏移量和返回的數量

 

11.查詢內嵌文檔 

 

 

12.強大的$where查詢

db.foo.find();                   

{ "_id" : ObjectId("4e17ce0ac39f1afe0ba78ce4"), "a" : 1, "b" : 3, "c" : 10 }

{ "_id" : ObjectId("4e17ce13c39f1afe0ba78ce5"), "a" : 1, "b" : 6, "c" : 6 }

 

如果要查詢 b = c 的文檔怎麼辦?

 

> db.foo.find({"$where":function(){

    for(var current in this){

        for(var other in this){

            if(current != other && this[current] == this[other]){

                return true;    

            }

        }

    }

    return false;

 

}});

 

 

 

{ "_id" : ObjectId("4e17ce13c39f1afe0ba78ce5"), "a" : 1, "b" : 6, "c" : 6 }

 

 

 

1 ) . 大於,小於,大於或等於,小於或等於

$gt:大於

$lt:小於

$gte:大於或等於

$lte:小於或等於

例子:

db.collection.find({ "field" : { $gt: value } } ); // greater than : field > value

db.collection.find({ "field" : { $lt: value } } ); // less than : field < value

db.collection.find({ "field" : { $gte: value } } ); // greater than or equal to : field >= value

db.collection.find({ "field" : { $lte: value } } ); // less than or equal to : field <= value

 

 

 

如查詢j大於3,小於4:

 

 

db.things.find({j : {$lt: 3}});

db.things.find({j : {$gte: 4}});

 

也可以合併在一條語句內:

 

db.collection.find({ "field" : { $gt: value1, $lt: value2 } } ); // value1 < field < value

 

2) 不等於 $ne

 

例子:

 

db.things.find( { x : { $ne : 3 } } );

 

3) in 和 not in ($in $nin)

語法:

db.collection.find( { "field" : { $in : array } } );

 

 

例子:

db.things.find({j:{$in: [2,4,6]}});

db.things.find({j:{$nin: [2,4,6]}});

 

4) 取模運算$mod

如下麵的運算:

db.things.find( "this.a % 10 == 1")

 

可用$mod代替:

db.things.find( { a : { $mod : [ 10 , 1 ] } } )

 

5)  $all

$all和$in類似,但是他需要匹配條件內所有的值:

如有一個對象:

{ a: [ 1, 2, 3 ] }

 

下麵這個條件是可以匹配的:

 

db.things.find( { a: { $all: [ 2, 3 ] } } );

 

但是下麵這個條件就不行了:

 

db.things.find( { a: { $all: [ 2, 3, 4 ] } } );

 

6)  $size

$size是匹配數組內的元素數量的,如有一個對象:{a:["foo"]},他只有一個元素:

下麵的語句就可以匹配:

db.things.find( { a : { $size: 1 } } );

 

官網上說不能用來匹配一個範圍內的元素,如果想找$size<5之類的,他們建議創建一個欄位來保存元素的數量。

 

You cannot use $size to find a range of sizes (for example: arrays with more than 1 element). If you need to query for a range, create an extra size field that you increment when you add elements.

 

 

7)$exists

 

$exists用來判斷一個元素是否存在:

 

如:

 

db.things.find( { a : { $exists : true } } ); // 如果存在元素a,就返回

db.things.find( { a : { $exists : false } } ); // 如果不存在元素a,就返回

 

8)  $type

 

$type 基於 bson type來匹配一個元素的類型,像是按照類型ID來匹配

 

類型 和 ID  對應列表 如下 :

http://www.w3cschool.cc/mongodb/mongodb-operators-type.html

更改欄位類型 如下 :

http://loo2k.com/blog/mongodb-change-field-type/

http://blog.chinaunix.net/uid-15795819-id-3873422.html

類型和java類型對比如下:

http://docs.mongodb.org/ecosystem/drivers/java-types/

http://docs.mongodb.org/manual/reference/bson-types/

 

db.things.find( { a : { $type : 2 } } ); // matches if a is a string

db.things.find( { a : { $type : 16 } } ); // matches if a is an int

 

 

9)正則表達式

mongo支持正則表達式,如:

db.customers.find( { name : /acme.*corp/i } ); // 後面的i的意思是區分大小寫

 

 

10)  查詢數據內的值

下麵的查詢是查詢colors內red的記錄,如果colors元素是一個數據,資料庫將遍歷這個數組的元素來查詢。

db.things.find( { colors : "red" } );

 

 

11) $elemMatch

如果對象有一個元素是數組,那麼$elemMatch可以匹配內數組內的元素:

> t.find( { x : { $elemMatch : { a : 1, b : { $gt : 1 } } } } ) 

{ "_id" : ObjectId("4b5783300334000000000aa9"), 

"x" : [ { "a" : 1, "b" : 3 }, 7, { "b" : 99 }, { "a" : 11 } ]

}

 

$elemMatch : { a : 1, b : { $gt : 1 } } 所有的條件都要匹配上才行。

 

註意,上面的語句和下麵是不一樣的。

 

 

> t.find( { "x.a" : 1, "x.b" : { $gt : 1 } } )

 

$elemMatch是匹配{ "a" : 1, "b" : 3 },而後面一句是匹配{ "b" : 99 }, { "a" : 11 } 

 

12)  查詢嵌入對象的值

db.postings.find( { "author.name" : "joe" } );

 

 

 

註意用法是author.name,用一個點就行了。更詳細的可以看這個鏈接: dot notation

 

舉個例子:

 

 

> db.blog.save({ title : "My First Post", author: {name : "Jane", id : 1}})

 

 

 

如果我們要查詢 authors name 是Jane的, 我們可以這樣:

 

 

> db.blog.findOne({"author.name" : "Jane"})

 

 

 

如果不用點,那就需要用下麵這句才能匹配:

 

 

db.blog.findOne({"author" : {"name" : "Jane", "id" : 1}})

 

 

 

下麵這句:

 

db.blog.findOne({"author" : {"name" : "Jane"}})

 

 

是不能匹配的,因為mongodb對於子對象,他是精確匹配。

 

 

13) 元操作符 $not 取反

 

如:

 

 

db.customers.find( { name : { $not : /acme.*corp/i } } );

 

 

db.things.find( { a : { $not : { $mod : [ 10 , 1 ] } } } );

 

mongodb還有很多函數可以用,如排序,統計等,請參考原文。

 

mongodb目前沒有或(or)操作符,只能用變通的辦法代替,可以參考下麵的鏈接:

 

http://www.mongodb.org/display/DOCS/OR+operations+in+query+expressions

分類: MongoDB

 

 

 

二、更新

mongodb更新有兩個命令:

1).update()命令

 

db.collection.update( criteria, objNew, upsert, multi )

 

criteria : update的查詢條件,類似sql update查詢內where後面的

objNew   : update的對象和一些更新的操作符(如$,$inc...)等,也可以理解為sql update查詢內set後面的

upsert   : 這個參數的意思是,如果不存在update的記錄,是否插入objNew,true為插入,預設是false,不插入。

multi    : mongodb預設是false,只更新找到的第一條記錄,如果這個參數為true,就把按條件查出來多條記錄全部更新。

 

例:

db.test0.update( { "count" : { $gt : 1 } } , { $set : { "test2" : "OK"} } ); 只更新了第一條記錄

db.test0.update( { "count" : { $gt : 3 } } , { $set : { "test2" : "OK"} },false,true ); 全更新了

db.test0.update( { "count" : { $gt : 4 } } , { $set : { "test5" : "OK"} },true,false ); 只加進去了第一條

db.test0.update( { "count" : { $gt : 5 } } , { $set : { "test5" : "OK"} },true,true ); 全加進去了

db.test0.update( { "count" : { $gt : 15 } } , { $inc : { "count" : 1} },false,true );全更新了

db.test0.update( { "count" : { $gt : 10 } } , { $inc : { "count" : 1} },false,false );只更新了第一條

 

2).save()命令

 

db.collection.save( x )

 

x就是要更新的對象,只能是單條記錄。

 

如果在collection內已經存在一個和x對象相同的"_id"的記錄。mongodb就會把x對象替換collection內已經存在的記錄,否則將會插入x對象,如果x內沒有_id,系統會自動生成一個再插入。相當於上面update語句的upsert=true,multi=false的情況。

例:

db.test0.save({count:40,test1:"OK"}); #_id系統會生成

db.test0.save({_id:40,count:40,test1:"OK"}); #如果test0內有_id等於40的,會替換,否則插入。

 

mongodb的更新操作符:

1) $inc

用法:{ $inc : { field : value } }

意思對一個數字欄位field增加value,例:

> db.test0.find( { "_id" : 15 } );

{ "_id" : { "floatApprox" : 15 }, "count" : 16, "test1" : "TESTTEST", "test2" : "OK", "test3" : "TESTTEST", "test4" : "OK", "test5" : "OK" }

 

> db.test0.update( { "_id" : 15 } , { $inc : { "count" : 1 } } );

> db.test0.find( { "_id" : 15 } );

{ "_id" : { "floatApprox" : 15 }, "count" : 17, "test1" : "TESTTEST", "test2" : "OK", "test3" : "TESTTEST", "test4" : "OK", "test5" : "OK" }

 

> db.test0.update( { "_id" : 15 } , { $inc : { "count" : 2 } } );

> db.test0.find( { "_id" : 15 } );

{ "_id" : { "floatApprox" : 15 }, "count" : 19, "test1" : "TESTTEST", "test2" : "OK", "test3" : "TESTTEST", "test4" : "OK", "test5" : "OK" }

 

> db.test0.update( { "_id" : 15 } , { $inc : { "count" : -1 } } );

> db.test0.find( { "_id" : 15 } );

{ "_id" : { "floatApprox" : 15 }, "count" : 18, "test1" : "TESTTEST", "test2" : "OK", "test3" : "TESTTEST", "test4" : "OK", "test5" : "OK" }

 

2) $set

用法:{ $set : { field : value } }

就是相當於sql的set field = value,全部數據類型都支持$set。例:

> db.test0.update( { "_id" : 15 } , { $set : { "test1" : "testv1","test2" : "testv2","test3" : "testv3","test4" : "testv4" } } );

> db.test0.find( { "_id" : 15 } );

{ "_id" : { "floatApprox" : 15 }, "count" : 18, "test1" : "testv1", "test2" : "testv2", "test3" : "testv3", "test4" : "testv4", "test5" : "OK" }

 

3) $unset

用法:{ $unset : { field : 1} }

顧名思義,就是刪除欄位了。例:

> db.test0.update( { "_id" : 15 } , { $unset : { "test1":1 } } );

> db.test0.find( { "_id" : 15 } );

{ "_id" : { "floatApprox" : 15 }, "count" : 18, "test2" : "testv2", "test3" : "testv3", "test4" : "testv4", "test5" : "OK" }

 

> db.test0.update( { "_id" : 15 } , { $unset : { "test2": 0 } } );

> db.test0.find( { "_id" : 15 } );

{ "_id" : { "floatApprox" : 15 }, "count" : 18, "test3" : "testv3", "test4" : "testv4", "test5" : "OK" }

 

> db.test0.update( { "_id" : 15 } , { $unset : { "test3":asdfasf } } );

Fri May 14 16:17:38 JS Error: ReferenceError: asdfasf is not defined (shell):0

 

> db.test0.update( { "_id" : 15 } , { $unset : { "test3":"test" } } );

> db.test0.find( { "_id" : 15 } );

{ "_id" : { "floatApprox" : 15 }, "count" : 18, "test4" : "testv4", "test5" : "OK" }

 

沒看出field : 1裡面的1是乾什麼用的,反正只要有東西就行。

 

4) $push

用法:{ $push : { field : value } }

把value追加到field裡面去,field一定要是數組類型才行,如果field不存在,會新增一個數組類型加進去。例:

 

> db.test0.update( { "_id" : 15 } , { $set : { "test1" : ["aaa","bbb"] } } );

> db.test0.find( { "_id" : 15 } );

{ "_id" : { "floatApprox" : 15 }, "count" : 18, "test1" : [ "aaa", "bbb" ], "test4" : "testv4", "test5" : "OK" }

 

> db.test0.update( { "_id" : 15 } , { $push : { "test1": "ccc" } } );

> db.test0.find( { "_id" : 15 } );

{ "_id" : { "floatApprox" : 15 }, "count" : 18, "test1" : [ "aaa", "bbb", "ccc" ], "test4" : "testv4", "test5" : "OK" }

 

> db.test0.update( { "_id" : 15 } , { $push : { "test2": "ccc" } } );

> db.test0.find( { "_id" : 15 } );

{ "_id" : { "floatApprox" : 15 }, "count" : 18, "test1" : [ "aaa", "bbb", "ccc" ], "test2" : [ "ccc" ], "test4" : "testv4", "test5" : "OK" }

 

> db.test0.update( { "_id" : 15 } , { $push : { "test1": ["ddd","eee"] } } );

> db.test0.find( { "_id" : 15 } );

{ "_id" : { "floatApprox" : 15 }, "count" : 18, "test1" : [ "aaa", "bbb", "ccc", [ "ddd", "eee" ] ], "test2" : [ "ccc" ], "test4" : "testv4", "test5" : "OK" }5) $pushAll

 

 

5) $pushAll

用法:{ $pushAll : { field : value_array } }

同$push,只是一次可以追加多個值到一個數組欄位內。例:

> db.test0.find( { "_id" : 15 } );

{ "_id" : { "floatApprox" : 15 }, "count" : 18, "test1" : [ "aaa", "bbb", "ccc", [ "ddd", "eee" ] ], "test2" : [ "ccc" ], "test4" : "testv4", "test5" : "OK" }

 

> db.test0.update( { "_id" : 15 } , { $pushAll : { "test1": ["fff","ggg"] } } );

> db.test0.find( { "_id" : 15 } );

{ "_id" : { "floatApprox" : 15 }, "count" : 18, "test1" : [ "aaa", "bbb", "ccc", [ "ddd", "eee" ], "fff", "ggg" ], "test2" : [ "ccc" ], "test4" : "testv4", "test5" : "OK" }

 

6)  $addToSet

用法:{ $addToSet : { field : value } }

增加一個值到數組內,而且只有當這個值不在數組內才增加。例:

> db.test0.update( { "_id" : 15 } , { $addToSet : { "test1": {$each : ["444","555"] } } } );

> db.test0.find( { "_id" : 15 } );

{ "_id" : { "floatApprox" : 15 }, "count" : 18, 

 

 

  "test1" : ["aaa","bbb","ccc",["ddd","eee"],"fff","ggg",["111","222"],"444","555"], 

 

 

  "test2" : [ "ccc" ], "test4" : "testv4", "test5" : "OK"

 

 

 }

> db.test0.update( { "_id" : 15 } , { $addToSet : { "test1": {$each : ["444","555"] } } } );

> db.test0.find( { "_id" : 15 } );

{ "_id" : { "floatApprox" : 15 }, "count" : 18, 

 

 

  "test1" : ["aaa","bbb","ccc",["ddd","eee"],"fff","ggg",["111","222"],"444","555"], "test2" : [ "ccc" ], 

 

 

  "test4" : "testv4", "test5" : "OK" 

 

 

}

> db.test0.update( { "_id" : 15 } , { $addToSet : { "test1": ["444","555"] } } );

> db.test0.find( { "_id" : 15 } );

{ "_id" : { "floatApprox" : 15 }, "count" : 18, 

 

 

  "test1" : ["aaa","bbb","ccc",["ddd","eee"],"fff","ggg",["111","222"],"444","555",["444","555"]], "test2" : [ "ccc" ], 

 

 

  "test4" : "testv4", "test5" : "OK" 

 

 

}

> db.test0.update( { "_id" : 15 } , { $addToSet : { "test1": ["444","555"] } } );

> db.test0.find( { "_id" : 15 } );

{ "_id" : { "floatApprox" : 15 }, "count" : 18, "test1" : ["aaa","bbb","ccc",["ddd","eee"],"fff","ggg",["111","222"],"444","555",["444","555"]], "test2" : [ "ccc" ], 

 

 

  "test4" : "testv4", "test5" : "OK" 

 

 

}

 

7) $pop

刪除數組內的一個值

用法:

刪除最後一個值:{ $pop : { field : 1 } }刪除第一個值:{ $pop : { field : -1 } }

註意,只能刪除一個值,也就是說只能用1或-1,而不能用2或-2來刪除兩條。mongodb 1.1及以後的版本才可以用,例:

> db.test0.find( { "_id" : 15 } );

{ "_id" : { "floatApprox" : 15 }, "count" : 18, 

 

 

  "test1" : ["bbb","ccc",["ddd","eee"],"fff","ggg",["111","222"],"444"], 

 

 

  "test2" : [ "ccc" ], "test4" : "testv4", "test5" : "OK" 

 

 

}

> db.test0.update( { "_id" : 15 } , { $pop : { "test1": -1 } } );

> db.test0.find( { "_id" : 15 } );

{ "_id" : { "floatApprox" : 15 }, "count" : 18, 

 

 

  "test1" : ["ccc",["ddd","eee"],"fff","ggg",["111","222"],"444"], 

 

 

  "test2" : [ "ccc" ], "test4" : "testv4", "test5" : "OK"

 

 

 }

> db.test0.update( { "_id" : 15 } , { $pop : { "test1": 1 } } );

> db.test0.find( { "_id" : 15 } );

{ "_id" : { "floatApprox" : 15 }, "count" : 18, 

 

 

  "test1" : [ "ccc", [ "ddd", "eee" ], "fff", "ggg", [ "111", "222" ] ], "test2" : [ "ccc" ], "test4" : "testv4",

  "test5" : "OK" 

 

 

}

 

8) $pull

用法:$pull : { field : value } }

從數組field內刪除一個等於value值。例:

> db.test0.find( { "_id" : 15 } );

{ "_id" : { "floatApprox" : 15 }, "count" : 18, "test1" : [ "ccc", [ "ddd", "eee" ], "fff", "ggg", [ "111", "222" ] ], "test2" : [ "ccc" ], "test4" : "testv4",

"test5" : "OK" }

 

> db.test0.update( { "_id" : 15 } , { $pull : { "test1": "ggg" } } );

> db.test0.find( { "_id" : 15 } );

{ "_id" : { "floatApprox" : 15 }, "count" : 18, "test1" : [ "ccc", [ "ddd", "eee" ], "fff", [ "111", "222" ] ], "test2" : [ "ccc" ], "test4" : "testv4", "test5"

: "OK" }

 

9) $pullAll

用法:{ $pullAll : { field : value_array } }

同$pull,可以一次刪除數組內的多個值。例:

> db.test0.find( { "_id" : 15 } );

{ "_id" : { "floatApprox" : 15 }, "count" : 18, "test1" : [ "ccc", [ "ddd", "eee" ], "fff", [ "111", "222" ] ], "test2" : [ "ccc" ], "test4" : "testv4", "test5"

: "OK" }

 

> db.test0.update( { "_id" : 15 } , { $pullAll : { "test1": [ "ccc" , "fff" ] } } );

> db.test0.find( { "_id" : 15 } );

{ "_id" : { "floatApprox" : 15 }, "count" : 18, "test1" : [ [ "ddd", "eee" ], [ "111", "222" ] ], "test2" : [ "ccc" ], "test4" : "testv4", "test5" : "OK" }

 

 

10) $ 操作符

$是他自己的意思,代表按條件找出的數組裡面某項他自己。呵呵,比較坳口。看一下官方的例子:

> t.find()

{ "_id" : ObjectId("4b97e62bf1d8c7152c9ccb74"), "title" : "ABC", "comments" : [ { "by" : "joe", "votes" : 3 }, { "by" : "jane", "votes" : 7 } ] }

 

> t.update( {'comments.by':'joe'}, {$inc:{'comments.$.votes':1}}, false, true )

 

> t.find()

{ "_id" : ObjectId("4b97e62bf1d8c7152c9ccb74"), "title" : "ABC", "comments" : [ { "by" : "joe", "votes" : 4 }, { "by" : "jane", "votes" : 7 } ] }

 

需要註意的是,$只會應用找到的第一條數組項,後面的就不管了。還是看例子:

> t.find();

{ "_id" : ObjectId("4b9e4a1fc583fa1c76198319"), "x" : [ 1, 2, 3, 2 ] }

> t.update({x: 2}, {$inc: {"x.$": 1}}, false, true);

> t.find();

 

還有註意的是$配合$unset使用的時候,會留下一個null的數組項,不過可以用{$pull:{x:null}}刪除全部是null的數組項。例:

> t.insert({x: [1,2,3,4,3,2,3,4]})

> t.find()

{ "_id" : ObjectId("4bde2ad3755d00000000710e"), "x" : [ 1, 2, 3, 4, 3, 2, 3, 4 ] }

> t.update({x:3}, {$unset:{"x.$":1}})

> t.find()

{ "_id" : ObjectId("4bde2ad3755d00000000710e"), "x" : [ 1, 2, null, 4, 3, 2, 3, 4 ] }

 

{ "_id" : ObjectId("4b9e4a1fc583fa1c76198319"), "x" : [ 1, 3, 3, 2 ] }

 

 

 

============  數組元素操作示例 ================

 

 

> db.arraytest.insert({id:2, name:'leon', comments:[{id:'011', content:'cmt11'}, {id:'012', content:'cmt12'}, {id:'013', content:'cmt13'}]})

 

 

 

1. 數組內的元素可以直接查詢

 

> db.arraytest.find({'comments.id':'002'})

 

2. 更新數組中的某個節點的值,用$符號

 

db.arraytest.update({'comments.id':'012'}, {$set: {'comments.$.content':'cmtttt012'}})

 

3. 刪除數組中的某一列,變成null

 

> db.arraytest.update({'comments.id':'012'}, {$unset: {'comments.$':1}})

 

 4. 向數組中添加一個元素,如果之前沒有元素則會新建數組

 

> db.arraytest.update({'comments.id':'112'}, {$push: {'comments.$.reply': {'rid':'r21', content:'reply22'}}}) 

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 一文瞭解Docker容器技術的操作 前言一、Docker是什麼二、Docker的安裝及測試Docker的安裝Docker的Hello world測試三、Docker的常見操作鏡像的基本操作容器的基本操作鏡像、容器的導入和導出四、關於DockerFile總結 前言 相信點進這篇文章的Coder,不管是 ...
  • 在已經編譯安裝好php7場景下,install gd庫 with free-type (解決Call to undefined function imagettftext()) install gd with free-type 有free-type才能支持php的imagettftext()圖片處 ...
  • 找不到ifconfig命令 sudo apt install net-tools 進入root用戶 su root 更新當前密碼 sudo passwd 查看當前系統配置 uname -a 下載 比如我要下載git apt-get update # 先執行這條命令更新 apt-get install ...
  • 消費者是品牌最重要的資產,如何能夠更好地留存消費者是企業制勝的關鍵。以阿裡為代表的平臺也提出了要從“流量運營”向“消費者運營”的轉型。在信息技術發展日新月異的今天,各大企業與平臺紛紛建立了自己的大數據平臺,累積了海量的數據,如何利用這些數據來洞察消費者,做好消費者運營,成為企業必修的一個課題。本文將 ...
  • Redis 有序集合和集合一樣也是string類型元素的集合,且不允許重覆的成員。 不同的是每個元素都會關聯一個double類型的分數。redis正是通過分數來為集合中的成員進行從小到大的排序。 有序集合的成員是唯一的,但分數(score)卻可以重覆。 一、向有序集合添加一個或多個成員,或者更新已存 ...
  • 1,下載nodejs http://nodejs.cn/download/ 註意下載版本,可能與win7 不能使用。 2,安裝,直接點擊下一步。 3,查看安裝nodejs版本 node -v 查看安裝的版本號 npm -v 4,安裝淘寶鏡像 npm install -g cnpm --registr ...
  • Mysql資料庫提供了大量的函數,學會使用將會事半功倍,以下分別為字元串函數,數值函數,時間和日期函數,系統函數 (一)字元串函數 CONCAT(s1,s2,...) 返回連接參數產生的字元串,一個或多個待拼接的內容,任意一個為NULL則返回值為NULL SELECT CONCAT('hel','l ...
  • 1. 到底什麼是主鍵,外鍵? 基本概念: MySQL中“鍵”和“索引”的定義相同,所以外鍵和主鍵一樣也是索引的一種。不同的是MySQL會自動為所有表的主鍵進行索引,但是外鍵欄位必須由用戶進行明確的索引。 用於外鍵關係的欄位必須在所有的參照表中進行明確地索引,InnoDB不能自動地創建索引。 外鍵可以 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...