初學mongodb中注意事項和方法(持續更新)

2021-10-25 02:08:03 字數 1551 閱讀 6143

1、查詢的時候find()出來的是乙個陣列物件 findone()出來的是查到的第乙個物件

2、關於query用法

//精確匹配

/* query query=new query(criteria.where(「shijian」).is(shijian));/

//模糊查詢

query query=new query(criteria.where(「shijian」).regex("^." + shijian + "."))

;//多

條件查詢

/∗qu

eryq

uery

=new

quer

y(cr

iter

ia.w

here

("na

me")

.is(

"ces

hi")

.and

("sh

ijia

n").

is(s

hiji

an))

;∗//

/多條件

模糊查詢

/∗qu

eryq

uery

=new

quer

y(cr

iter

ia.w

here

("sh

ijia

n").

rege

x(".

∗"+s

hiji

an+"

.∗

")); //多條件查詢 /*query query = new query(criteria.where("name").is("ceshi").and("shijian").is(shijian));*/ //多條件模糊查詢 /* query query=new query(criteria.where("shijian").regex("^.*" + shijian + ".*

"));//

多條件查

詢/∗q

uery

quer

y=ne

wque

ry(c

rite

ria.

wher

e("n

ame"

).is

("ce

shi"

).an

d("s

hiji

an")

.is(

shij

ian)

);∗/

//多條

件模糊查

詢/∗q

uery

quer

y=ne

wque

ry(c

rite

ria.

wher

e("s

hiji

an")

.reg

ex("

.∗"+

shij

ian+

".∗").and(「name」).is(「ceshi」));/

3、

JS中注意事項

一 判斷中注意事項 一 所有的相對路徑都別拿來做判斷 1.img src 2.href 1.css href html index.html 3.img src 二 顏色值不能拿來做判斷 color red f00 rgb 250,0,0 三 innerhtml 值不能拿來做判斷 解決 設定開關變數...

php foreach中 注意事項

以前用foreach,總喜歡在第二次遍歷時改變value的拼寫,比如 x array a b c foreach x as value echo foreach x as value2 得到結果12 a b c a b c 並沒有什麼不妥.今天寫的時候沒有留神,發現出錯了,示例如下 x array ...

MongoDB注意事項

1.mmap failed with out of memory 在32位平台mongodb不允許資料庫檔案 累計總和 超過2g,而64位平台沒有這個限制。64位需取消虛擬記憶體限制。取消虛擬記憶體限制的方法 修改etc profile檔案,在檔案最後加入一行 ulimit v unlimited ...